emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#14710: closed (add-file-local-variable vs. unquote


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#14710: closed (add-file-local-variable vs. unquoted string)
Date: Tue, 25 Jun 2013 13:08:02 +0000

Your message dated Tue, 25 Jun 2013 09:06:52 -0400
with message-id <address@hidden>
and subject line Re: bug#14710: add-file-local-variable vs. unquoted string
has caused the debbugs.gnu.org bug report #14710,
regarding add-file-local-variable vs. unquoted string
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
14710: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14710
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: add-file-local-variable vs. unquoted string Date: Tue, 25 Jun 2013 04:16:05 +0800
Try
M-x add-file-local-variable
compile-command
a b c

Note how b c are thrown away.
Yes the user should have typed "a b c",
but still some warning should be printed upon throwing them away.

Package: emacs-snapshot
Version: 2:20130618-1



--- End Message ---
--- Begin Message --- Subject: Re: bug#14710: add-file-local-variable vs. unquoted string Date: Tue, 25 Jun 2013 09:06:52 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)
> Try
> M-x add-file-local-variable
> compile-command
> a b c

> Note how b c are thrown away.
> Yes the user should have typed "a b c",
> but still some warning should be printed upon throwing them away.

Good point.  I fixed it with the patch below, which uses
read-from-minibuffer (with a non-nil `read' argument) instead of
read-string, so it re-uses the check that was already used when reading
an Elisp expression.


        Stefan


=== modified file 'lisp/files-x.el'
--- lisp/files-x.el     2013-06-18 20:38:43 +0000
+++ lisp/files-x.el     2013-06-25 12:59:31 +0000
@@ -71,12 +69,14 @@
         (format "Add %s with value: " variable))
        default))
      (t
-      (read (read-string (format "Add %s with value: " variable)
-                        nil 'set-variable-value-history
-                        (format "%S"
+    (let ((default (format "%S"
                                 (cond ((eq variable 'unibyte) t)
                                       ((boundp variable)
-                                       (symbol-value variable))))))))))
+                                  (symbol-value variable)))))
+          (minibuffer-completing-symbol t))
+      (read-from-minibuffer (format "Add %s with value: " variable)
+                            nil read-expression-map t
+                            'set-variable-value-history)))))
 
 (defun read-file-local-variable-mode ()
   "Read per-directory file-local variable's mode using completion.



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]