From 3ea2c7811bb678c31ee2db467080c397cbf9e3a7 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sun, 23 Mar 2014 23:11:59 +0100 Subject: [PATCH] lisp/frame.el (make-frame): Don't quote display name in error message. --- lisp/ChangeLog | 5 +++++ lisp/frame.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f00bef537f6..50d33c69b37 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-03-23 Juanma Barranquero + + * frame.el (make-frame): Don't quote display name in error message, + it is already a string. + 2014-03-23 Thierry Volpiatto * net/tramp.el (tramp-read-passwd): Suspend the timers while reading diff --git a/lisp/frame.el b/lisp/frame.el index b62c939d536..7b0a0a80082 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -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))) -- 2.39.5