From d3fcda2278c4546002d00524d02570e7c2b27128 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 14 Nov 2000 10:04:20 +0000 Subject: [PATCH] (comment-indent-default): Stick \s<\s< to the left when it follows non-comment text on the line. --- lisp/ChangeLog | 11 +++++++++++ lisp/newcomment.el | 6 ++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 04ff21d2e7d..296133f9afb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,14 @@ +2000-11-14 Stefan Monnier + + * newcomment.el (comment-indent-default): Stick \s<\s< to the left + when it follows non-comment text on the line. + + * emacs-lisp/lisp-mode.el (lisp-mode-variables): + Set font-lock-defaults. + (lisp-mode-shared-map): Init inside the defvar. + (emacs-lisp-mode, lisp-mode, lisp-interaction-mode): + Use define-derived-mode. + 2000-11-14 Miles Bader * faces.el (header-line): Use `:box nil' for color/gs displays too. diff --git a/lisp/newcomment.el b/lisp/newcomment.el index b4bdc16ba2c..4675370fdf7 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -6,7 +6,7 @@ ;; Maintainer: Stefan Monnier ;; Keywords: comment uncomment ;; Version: $Name: $ -;; Revision: $Id: newcomment.el,v 1.21 2000/10/05 22:43:22 monnier Exp $ +;; Revision: $Id: newcomment.el,v 1.22 2000/10/08 19:07:41 monnier Exp $ ;; This file is part of GNU Emacs. @@ -399,7 +399,9 @@ Point is assumed to be just at the end of a comment." ;;;###autoload (defun comment-indent-default () "Default for `comment-indent-function'." - (if (looking-at "\\s<\\s<\\s<") 0 + (if (and (looking-at "\\s<\\s<\\(\\s<\\)?") + (or (match-end 1) (/= (current-column) (current-indentation)))) + 0 (when (or (/= (current-column) (current-indentation)) (and (> comment-add 0) (looking-at "\\s<\\S<"))) comment-column))) -- 2.39.2