Skip to content

Commit

Permalink
muse-mode: Set comment syntax.
Browse files Browse the repository at this point in the history
* lisp/muse-mode.el (muse-mode): Declare comment syntax to be 
  `^; comment text$'.  Thanks to Jesse Alama for the suggestion.
git-archimport-id: mwolson@gnu.org--2005/muse--main--1.0--patch-232
  • Loading branch information
mwolson committed Sep 15, 2005
1 parent a8892a5 commit cfdddd6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ChangeLog
Expand Up @@ -2,6 +2,20 @@
# arch-tag: automatic-ChangeLog--mwolson@gnu.org--2005/muse--main--1.0
#

2005-09-15 03:52:01 GMT Michael Olson <mwolson@gnu.org> patch-232

Summary:
muse-mode: Set comment syntax.
Revision:
muse--main--1.0--patch-232

* lisp/muse-mode.el (muse-mode): Declare comment syntax to be
`^; comment text$'. Thanks to Jesse Alama for the suggestion.

modified files:
ChangeLog lisp/muse-mode.el


2005-09-13 06:30:18 GMT Michael Olson <mwolson@gnu.org> patch-231

Summary:
Expand Down
3 changes: 3 additions & 0 deletions lisp/muse-mode.el
Expand Up @@ -175,6 +175,9 @@ so only enable this if you don't use either of these."
(set (make-local-variable 'paragraph-start)
(concat paragraph-start "\\|\\s-+\\(-\\|[0-9]+\\.\\)\\s-+"
"\\|\\[[0-9]+\\]\\s-*"))
;; Comment syntax is `; comment'
(set (make-local-variable 'comment-start)
"; ")
(when (featurep 'pcomplete)
;; If pcomplete is available, set it up
(set (make-local-variable 'pcomplete-default-completion-function)
Expand Down

0 comments on commit cfdddd6

Please sign in to comment.