aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2011-11-18 09:34:39 -0500
committerStefan Monnier <[email protected]>2011-11-18 09:34:39 -0500
commitcbe71af350309f939b8159d31d8288ea9f719b30 (patch)
treed54e780d62dca92b55864d3f922aa77c3efd79fd
parent68c95424afadc486ac61ca60a2b0277ab36ae184 (diff)
* lisp/files-x.el (modify-file-local-variable): Obey commenting conventions.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/files-x.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 45a115ec56..03fa622031 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-11-18 Stefan Monnier <[email protected]>
+
+ * files-x.el (modify-file-local-variable): Obey commenting conventions.
+
2011-11-17 Glenn Morris <[email protected]>
* emacs-lisp/autoload.el (autoload-generate-file-autoloads):
diff --git a/lisp/files-x.el b/lisp/files-x.el
index a6320b32e5..ca84709718 100644
--- a/lisp/files-x.el
+++ b/lisp/files-x.el
@@ -149,7 +149,7 @@ from the Local Variables list ignoring the input argument VALUE."
(goto-char (point-max))
(let ((comment-style 'plain)
- (comment-start (or comment-start ";;; ")))
+ (comment-start (or comment-start ";; ")))
(comment-region
(prog1 (setq beg (point))
(insert "\nLocal Variables:\nEnd:\n"))