]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/dframe.el (dframe-current-frame): Remove spurious quote.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 12 Apr 2011 15:39:44 +0000 (17:39 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 12 Apr 2011 15:39:44 +0000 (17:39 +0200)
lisp/ChangeLog
lisp/dframe.el

index 6068454f781b91c1005d10b72c97a8476affebf8..6f1979a5b540c74ffbac33709e2db2bd82a53f5e 100644 (file)
@@ -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):
index 312f49f60536e3bdfc4b330ec1ce3b7b27d6ae81..71773b1abf8e6a4a8d9038fba4513d8c603190e3 100644 (file)
@@ -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)))