aboutsummaryrefslogtreecommitdiffstats
path: root/man/custom.texi
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2006-07-04 20:02:38 +0000
committerStefan Monnier <[email protected]>2006-07-04 20:02:38 +0000
commit91ec56a9a6e7f937ab02e11795d1fe803e4f1b6e (patch)
tree4208bcb6e1446af27b39053ec785b24b92ef3b9d /man/custom.texi
parentc58dccad6b628da65e3f90fcca2a42f906ede689 (diff)
Use ;; instead of ;;; to better follow coding conventions.
Diffstat (limited to 'man/custom.texi')
-rw-r--r--man/custom.texi20
1 files changed, 10 insertions, 10 deletions
diff --git a/man/custom.texi b/man/custom.texi
index f0f8fcee39..dbe2a1b328 100644
--- a/man/custom.texi
+++ b/man/custom.texi
@@ -1112,16 +1112,16 @@ variables list afterward.
Here is an example of a local variables list:
@example
-;;; Local Variables: ***
-;;; mode:lisp ***
-;;; comment-column:0 ***
-;;; comment-start: ";;; " ***
-;;; comment-end:"***" ***
-;;; End: ***
+;; Local Variables: **
+;; mode:lisp **
+;; comment-column:0 **
+;; comment-start: ";; " **
+;; comment-end:"**" **
+;; End: **
@end example
- Each line starts with the prefix @samp{;;; } and each line ends with
-the suffix @samp{ ***}. Emacs recognizes these as the prefix and
+ Each line starts with the prefix @samp{;; } and each line ends with
+the suffix @samp{ **}. Emacs recognizes these as the prefix and
suffix based on the first line of the list, by finding them
surrounding the magic string @samp{Local Variables:}; then it
automatically discards them from the other lines of the list.
@@ -1129,8 +1129,8 @@ automatically discards them from the other lines of the list.
The usual reason for using a prefix and/or suffix is to embed the
local variables list in a comment, so it won't confuse other programs
that the file is intended as input for. The example above is for a
-language where comment lines start with @samp{;;; } and end with
-@samp{***}; the local values for @code{comment-start} and
+language where comment lines start with @samp{;; } and end with
+@samp{**}; the local values for @code{comment-start} and
@code{comment-end} customize the rest of Emacs for this unusual
syntax. Don't use a prefix (or a suffix) if you don't need one.