Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
a53720fa
Commit
a53720fa
authored
Nov 18, 2000
by
Per Cederqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(lyskom-undisplay-buffer): Don't use window-list, since it takes
different arguments under Emacs 21 and other emacsen.
parent
d62fc59e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
src/ChangeLog
src/ChangeLog
+6
-0
src/buffers.el
src/buffers.el
+4
-5
No files found.
src/ChangeLog
View file @
a53720fa
2000-11-19 Per Starbck (commit by Per Cederqvist <ceder@moria>)
* buffers.el (lyskom-undisplay-buffer): Don't use window-list,
since it takes different arguments under Emacs 21 and other
emacsen.
2000-11-18 Joel Rosdahl <joel@rosdahl.net>
* lyskom-elisp-client.spec: Changed file names in %install
...
...
src/buffers.el
View file @
a53720fa
...
...
@@ -618,11 +618,10 @@ buffer"
(
when
(
and
(
window-live-p
dedicated-window
)
(
eq
(
get-buffer
buffer
)
(
window-buffer
dedicated-window
)))
(
cond
((
null
(
delq
dedicated-window
(
window-list
(
window-frame
dedicated-window
))))
(
bury-buffer
buffer
))
(
t
(
delete-window
dedicated-window
)))
(
setq
dedicated-window
nil
))
(
if
(
eq
dedicated-window
(
next-window
dedicated-window
))
(
bury-buffer
buffer
)
(
delete-window
dedicated-window
))
(
setq
dedicated-window
nil
))
(
when
saved-window-configuration
(
lyskom-set-partial-window-configuration
saved-window-configuration
)))
...
...
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