]> git.eshelyaron.com Git - emacs.git/commitdiff
Small fix for bug-reference.el
authorGlenn Morris <rgm@gnu.org>
Wed, 5 Jul 2017 17:32:26 +0000 (13:32 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 5 Jul 2017 17:32:26 +0000 (13:32 -0400)
* lisp/progmodes/bug-reference.el (bug-reference-bug-regexp):
Autoload safety property.  (Bug#27481)

lisp/progmodes/bug-reference.el

index 210f03560847dde674eb089cf5e03369046f1cd9..13c52a4571b536735fd87b35be5614da780ca4b7 100644 (file)
@@ -73,10 +73,12 @@ so that it is considered safe, see `enable-local-variables'.")
   "Regular expression matching bug references.
 The second subexpression should match the bug reference (usually a number)."
   :type 'string
-  :safe 'stringp
   :version "24.3"                      ; previously defconst
   :group 'bug-reference)
 
+;;;###autoload
+(put 'bug-reference-bug-regexp 'safe-local-variable 'stringp)
+
 (defun bug-reference-set-overlay-properties ()
   "Set properties of bug reference overlays."
   (put 'bug-reference 'evaporate t)