emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/newcomment.el


From: Dan Nicolaescu
Subject: [Emacs-diffs] Changes to emacs/lisp/newcomment.el
Date: Thu, 20 Apr 2006 21:24:21 +0000

Index: emacs/lisp/newcomment.el
diff -u emacs/lisp/newcomment.el:1.92 emacs/lisp/newcomment.el:1.93
--- emacs/lisp/newcomment.el:1.92       Mon Apr 17 03:51:30 2006
+++ emacs/lisp/newcomment.el    Thu Apr 20 21:24:18 2006
@@ -108,21 +108,25 @@
 ;;;###autoload
 (defvar comment-start nil
   "*String to insert to start a new comment, or nil if no comment syntax.")
+;;;###autoload(put 'comment-start 'safe-local-variable 'string-or-null-p)
 
 ;;;###autoload
 (defvar comment-start-skip nil
   "*Regexp to match the start of a comment plus everything up to its body.
 If there are any \\(...\\) pairs, the comment delimiter text is held to begin
 at the place matched by the close of the first pair.")
+;;;###autoload(put 'comment-start-skip 'safe-local-variable 'string-or-null-p)
 
 ;;;###autoload
 (defvar comment-end-skip nil
   "Regexp to match the end of a comment plus everything up to its body.")
+;;;###autoload(put 'comment-end-skip 'safe-local-variable 'string-or-null-p)
 
 ;;;###autoload
 (defvar comment-end ""
   "*String to insert to end a new comment.
 Should be an empty string if comments are terminated by end-of-line.")
+;;;###autoload(put 'comment-end 'safe-local-variable 'string-or-null-p)
 
 ;;;###autoload
 (defvar comment-indent-function 'comment-indent-default




reply via email to

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