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

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

bug#27481: 25.1; Autoloads in bug-references.el


From: Glenn Morris
Subject: bug#27481: 25.1; Autoloads in bug-references.el
Date: Wed, 05 Jul 2017 13:33:54 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Version: 26.1

Thanks; fixed.

commit 8ad9567
Date:   Wed Jul 5 13:32:26 2017 -0400

    Small fix for bug-reference.el
    
    * lisp/progmodes/bug-reference.el (bug-reference-bug-regexp):
    Autoload safety property.  (Bug#27481)

diff --git a/lisp/progmodes/bug-reference.el b/lisp/progmodes/bug-reference.el
index 210f035..13c52a4 100644
--- a/lisp/progmodes/bug-reference.el
+++ b/lisp/progmodes/bug-reference.el
@@ -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)





reply via email to

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