unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27369: 26.0.50; [PATCH] Mark prolog indent variables as safe
@ 2017-06-14 23:44 Alex
  2017-06-21  1:06 ` Glenn Morris
  0 siblings, 1 reply; 2+ messages in thread
From: Alex @ 2017-06-14 23:44 UTC (permalink / raw)
  To: 27369

[-- Attachment #1: Type: text/plain, Size: 75 bytes --]

Opening a file that sets these variables locally shouldn't prompt a
user.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: prolog --]
[-- Type: text/x-diff, Size: 1748 bytes --]

From ec126592cf6f70b7ba8f39d3071f50a1d524866c Mon Sep 17 00:00:00 2001
From: Alexander Gramiak <agrambot@gmail.com>
Date: Wed, 14 Jun 2017 17:30:18 -0600
Subject: [PATCH] * Mark prolog indent variables as safe

* lisp/progmodes/prolog.el (prolog-indent-width)
(prolog-left-indent-regexp, prolog-paren-indent-p)
(prolog-paren-indent): Mark as safe.
---
 lisp/progmodes/prolog.el | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el
index c234cca3ff..f2b487dd3b 100644
--- a/lisp/progmodes/prolog.el
+++ b/lisp/progmodes/prolog.el
@@ -358,13 +358,15 @@ prolog-system-version
 (defcustom prolog-indent-width 4
   "The indentation width used by the editing buffer."
   :group 'prolog-indentation
-  :type 'integer)
+  :type 'integer
+  :safe 'integerp)
 
 (defcustom prolog-left-indent-regexp "\\(;\\|\\*?->\\)"
   "Regexp for `prolog-electric-if-then-else-flag'."
   :version "24.1"
   :group 'prolog-indentation
-  :type 'regexp)
+  :type 'regexp
+  :safe 'stringp)
 
 (defcustom prolog-paren-indent-p nil
   "If non-nil, increase indentation for parenthesis expressions.
@@ -374,14 +376,16 @@ prolog-paren-indent-p
 terms (if this variable is nil, default)."
   :version "24.1"
   :group 'prolog-indentation
-  :type 'boolean)
+  :type 'boolean
+  :safe 'booleanp)
 
 (defcustom prolog-paren-indent 4
   "The indentation increase for parenthesis expressions.
 Only used in ( If -> Then ; Else) and ( Disj1 ; Disj2 ) style expressions."
   :version "24.1"
   :group 'prolog-indentation
-  :type 'integer)
+  :type 'integer
+  :safe 'integerp)
 
 (defcustom prolog-parse-mode 'beg-of-clause
   "The parse mode used (decides from which point parsing is done).
-- 
2.11.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#27369: 26.0.50; [PATCH] Mark prolog indent variables as safe
  2017-06-14 23:44 bug#27369: 26.0.50; [PATCH] Mark prolog indent variables as safe Alex
@ 2017-06-21  1:06 ` Glenn Morris
  0 siblings, 0 replies; 2+ messages in thread
From: Glenn Morris @ 2017-06-21  1:06 UTC (permalink / raw)
  To: 27369-done

Version: 26.1

Thanks; applied as 6719211.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-06-21  1:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-14 23:44 bug#27369: 26.0.50; [PATCH] Mark prolog indent variables as safe Alex
2017-06-21  1:06 ` Glenn Morris

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).