+2001-03-29 Stefan Monnier <monnier@cs.yale.edu>
+
+ * generic.el (generic-mode-set-comments): Use "" rather than nil
+ for comment-end.
+
2001-03-29 Gerd Moellmann <gerd@gnu.org>
- * emacs-lisp/advice.el (ad-make-advised-definition): Call
- interactive-form to obtain the interactive spec of subrs.
+ * emacs-lisp/advice.el (ad-make-advised-definition):
+ Call interactive-form to obtain the interactive spec of subrs.
* subr.el (interactive-form): New function.
(concat comment-start-skip "\\|" (regexp-quote start) "+\\s-*")))
;; First comment-style
(setq comment-start start)
- (setq comment-end (unless (string-equal end "\n") end))
+ (setq comment-end (if (string-equal end "\n") "" end))
(setq comment-start-skip (concat (regexp-quote start) "+\\s-*")))
;; Reuse comstyles if necessary