Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e56a043b
Commit
e56a043b
authored
Jul 04, 1996
by
Miles Bader
Browse files
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
semicolons.
parent
51a2264f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/emacs-lisp/lisp-mode.el
lisp/emacs-lisp/lisp-mode.el
+3
-1
No files found.
lisp/emacs-lisp/lisp-mode.el
View file @
e56a043b
...
...
@@ -119,7 +119,9 @@
(
make-local-variable
'comment-start
)
(
setq
comment-start
";"
)
(
make-local-variable
'comment-start-skip
)
(
setq
comment-start-skip
";+ *"
)
;; Look within the line for a ; following an even number of backslashes
;; after either a non-backslash or the line beginning.
(
setq
comment-start-skip
"\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *"
)
(
make-local-variable
'comment-column
)
(
setq
comment-column
40
)
(
make-local-variable
'comment-indent-function
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment