aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tromey <[email protected]>2010-08-14 19:01:42 -0400
committerChong Yidong <[email protected]>2010-08-14 19:01:42 -0400
commit6f1a6fafcf1386e556d2864768d593134d1df854 (patch)
treef866f607869d8dcb8fb816f008ba74922b7fb309
parent8a8d54cd2a7116c5aed4ecab7f5b14ae705ca740 (diff)
* lisp/progmodes/etags.el (tags-file-name): Mark safe if stringp (Bug#6733).
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/etags.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dee217104d..5eb3792ef6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2010-08-14 Tom Tromey <[email protected]>
+
+ * progmodes/etags.el (tags-file-name): Mark safe if stringp
+ (Bug#6733).
+
2010-08-14 Eli Zaretskii <[email protected]>
* mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 4f0fcd77ab..2018a71574 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -40,6 +40,7 @@ If you set this variable, do not also set `tags-table-list'.
Use the `etags' program to make a tags table file.")
;; Make M-x set-variable tags-file-name like M-x visit-tags-table.
;;;###autoload (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: "))
+;;;###autoload (put 'tags-file-name 'safe-local-variable 'stringp)
(defgroup etags nil "Tags tables."
:group 'tools)