lisp/dframe.el (dframe-current-frame): Remove spurious quote.
This commit is contained in:
parent
bf0ed58aa4
commit
2d6af8ddfe
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-04-12 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* dframe.el (dframe-current-frame): Remove spurious quote.
|
||||
|
||||
2011-04-12 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* calendar/cal-tex.el (cal-tex-end-document):
|
||||
|
|
|
@ -632,7 +632,7 @@ selecting FRAME-VAR."
|
|||
FRAME-VAR is the variable storing the currently active dedicated frame.
|
||||
If the current frame's buffer uses DESIRED-MAJOR-MODE, then use that frame."
|
||||
(if (not (eq (selected-frame) (symbol-value frame-var)))
|
||||
(if (and (eq major-mode 'desired-major-mode)
|
||||
(if (and (eq major-mode desired-major-mode)
|
||||
(get-buffer-window (current-buffer))
|
||||
(window-frame (get-buffer-window (current-buffer))))
|
||||
(window-frame (get-buffer-window (current-buffer)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue