]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/frame.el (make-frame): Don't quote display name in error message.
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 23 Mar 2014 22:11:59 +0000 (23:11 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 23 Mar 2014 22:11:59 +0000 (23:11 +0100)
lisp/ChangeLog
lisp/frame.el

index f00bef537f64c15a445504bfdf89805e483fdbee..50d33c69b37bf4e79086f486ff04e0c9e9bebc31 100644 (file)
@@ -1,3 +1,8 @@
+2014-03-23  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frame.el (make-frame): Don't quote display name in error message,
+       it is already a string.
+
 2014-03-23  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
 
        * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
index b62c939d536375dccccef316b00e5ea8f35c4eea..7b0a0a80082ddd79e2795f308cf1a1358a5d07fc 100644 (file)
@@ -668,7 +668,7 @@ the new frame according to its own rules."
              (cdr (assq 'window-system parameters)))
              (display
               (or (window-system-for-display display)
-                  (error "Don't know how to interpret display \"%S\""
+                  (error "Don't know how to interpret display %S"
                          display)))
             (t window-system)))
         (frame-creation-function (cdr (assq w frame-creation-function-alist)))