Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lyskom-elisp-client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
42300c03
Commit
42300c03
authored
Dec 02, 2000
by
Per Cederqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(window-list): Removed. This was no longer used.
parent
e4f331f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
src/compatibility.el
src/compatibility.el
+0
-25
No files found.
src/compatibility.el
View file @
42300c03
...
...
@@ -503,31 +503,6 @@ See `walk-windows' for the meaning of MINIBUF and FRAME."
minibuf
frame
)
windows
))
(
lyskom-provide-function
window-list
(
&optional
frame
minibuf
window
)
"Return a list of windows on FRAME, beginning with WINDOW.
FRAME and WINDOW default to the selected ones.
Optional second arg MINIBUF t means count the minibuffer window
even if not active. If MINIBUF is neither t nor nil it means
not to count the minibuffer even if it is active."
(
setq
window
(
or
window
(
selected-window
))
frame
(
or
frame
(
selected-frame
)))
(
if
(
not
(
eq
(
window-frame
window
)
frame
))
(
error
"Window must be on frame."
))
(
let
((
current-frame
(
selected-frame
))
list
)
(
unwind-protect
(
save-window-excursion
(
select-frame
frame
)
(
walk-windows
(
function
(
lambda
(
cur-window
)
(
if
(
not
(
eq
window
cur-window
))
(
setq
list
(
cons
cur-window
list
)))))
minibuf
)
(
setq
list
(
cons
window
list
)))
(
select-frame
current-frame
))))
(
lyskom-provide-function
replace-in-string
(
str
regexp
newtext
&optional
literal
)
"Replaces all matches in STR for REGEXP with NEWTEXT string.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment