diff options
| author | Tom Tromey | 2010-08-14 19:01:42 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-08-14 19:01:42 -0400 |
| commit | 6f1a6fafcf1386e556d2864768d593134d1df854 (patch) | |
| tree | f866f607869d8dcb8fb816f008ba74922b7fb309 | |
| parent | 8a8d54cd2a7116c5aed4ecab7f5b14ae705ca740 (diff) | |
| download | emacs-6f1a6fafcf1386e556d2864768d593134d1df854.tar.gz emacs-6f1a6fafcf1386e556d2864768d593134d1df854.zip | |
* lisp/progmodes/etags.el (tags-file-name): Mark safe if stringp (Bug#6733).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/etags.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dee217104db..5eb3792ef64 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-08-14 Tom Tromey <tromey@redhat.com> | ||
| 2 | |||
| 3 | * progmodes/etags.el (tags-file-name): Mark safe if stringp | ||
| 4 | (Bug#6733). | ||
| 5 | |||
| 1 | 2010-08-14 Eli Zaretskii <eliz@gnu.org> | 6 | 2010-08-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * mouse.el (mouse-yank-primary): Fix mouse-2 on MS-Windows and | 8 | * 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 4f0fcd77ab5..2018a71574e 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'. | |||
| 40 | Use the `etags' program to make a tags table file.") | 40 | Use the `etags' program to make a tags table file.") |
| 41 | ;; Make M-x set-variable tags-file-name like M-x visit-tags-table. | 41 | ;; Make M-x set-variable tags-file-name like M-x visit-tags-table. |
| 42 | ;;;###autoload (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: ")) | 42 | ;;;###autoload (put 'tags-file-name 'variable-interactive (purecopy "fVisit tags table: ")) |
| 43 | ;;;###autoload (put 'tags-file-name 'safe-local-variable 'stringp) | ||
| 43 | 44 | ||
| 44 | (defgroup etags nil "Tags tables." | 45 | (defgroup etags nil "Tags tables." |
| 45 | :group 'tools) | 46 | :group 'tools) |