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
emacs
emacs
Commits
60b4b298
Commit
60b4b298
authored
Jun 11, 2007
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(server-switch-buffer): Remove redundant check.
parent
843d2458
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
lisp/ChangeLog
lisp/ChangeLog
+6
-2
lisp/server.el
lisp/server.el
+1
-2
No files found.
lisp/ChangeLog
View file @
60b4b298
2007-06-11 Juanma Barranquero <lekktu@gmail.com>
* server.el (server-switch-buffer): Remove redundant check.
2007-06-10 Martin Rudalics <rudalics@gmx.at>
* emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
Match
against file-name-nondirectory.
* emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
Match
against file-name-nondirectory.
Fix text on user customization variables.
Reported by Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>.
...
...
lisp/server.el
View file @
60b4b298
...
...
@@ -735,8 +735,7 @@ Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
(
select-window
win
)
(
set-buffer
next-buffer
))
;; Otherwise, let's find an appropriate window.
(
cond
((
and
(
windowp
server-window
)
(
window-live-p
server-window
))
(
cond
((
window-live-p
server-window
)
(
select-window
server-window
))
((
framep
server-window
)
(
unless
(
frame-live-p
server-window
)
...
...
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