aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/local-vars-list.el
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2008-05-20 11:11:34 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2008-05-20 11:11:34 +0000
commit91b0057e6994708f39b8ebde6dd14cb55de52f5d (patch)
tree3810adce60335433d35f991d15f903d48958414a /lib/local-vars-list.el
parent82ab48dd8ffc7ae698512f63cb8bb2ba97c16fe4 (diff)
Fixed a bug with coq-prog-name.
Diffstat (limited to 'lib/local-vars-list.el')
-rw-r--r--lib/local-vars-list.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/local-vars-list.el b/lib/local-vars-list.el
index e6221e9a..f0b6678e 100644
--- a/lib/local-vars-list.el
+++ b/lib/local-vars-list.el
@@ -186,18 +186,19 @@ Raises an error if symb is not in the list."
(local-vars-list-get-current lpat rpat))))
(defun local-vars-list-get-safe (symb)
- "Return true if variable SYMB belongs to the local variable list of the current
-buffer."
+ "Return true if variable SYMB belongs to the local variable list of the
+current buffer."
(condition-case nil (local-vars-list-get symb) (error nil)))
(defun local-vars-list-set (symb val)
"Write the value val in the local variable list for variable symb.
-If the variable is already specified in the list, replace the value. If no local
-variable list is found, create one at the end of the buffer first."
+If the variable is already specified in the list, replace the
+value. If no local variable list is found, create one at the end
+of the buffer first."
(save-excursion
(let ((lrpat (local-vars-list-find)))
- (if (not lrpat)
- (progn
+ (if (not lrpat)
+ (progn
(local-vars-list-insert-empty-zone)
(setq lrpat (local-vars-list-find))))
(beginning-of-line)