]> git.eshelyaron.com Git - emacs.git/commitdiff
(brief-mode): New alias.
authorDave Love <fx@gnu.org>
Sun, 21 May 2000 17:33:05 +0000 (17:33 +0000)
committerDave Love <fx@gnu.org>
Sun, 21 May 2000 17:33:05 +0000 (17:33 +0000)
lisp/emulation/crisp.el

index 12492de7ebff736c8ab27c1f27db6c2af1cb4d09..13aa47c766763bc044dfedd64a63e8d8621cc980 100644 (file)
@@ -351,7 +351,7 @@ normal CRiSP binding) and when it is nil M-x will run
 
 ;;;###autoload
 (defun crisp-mode (&optional arg)
-  "Toggle CRiSP emulation minor mode.
+  "Toggle CRiSP/Brief emulation minor mode.
 With ARG, turn CRiSP mode on if ARG is positive, off otherwise."
   (interactive "P")
   (setq crisp-mode (if (null arg)
@@ -371,6 +371,10 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise."
        (define-key crisp-mode-map [(meta f1)] 'scroll-all-mode))
     (run-hooks 'crisp-mode-hook)))
 
+;; People might use Apropos on `brief'.
+;;;###autoload
+(defalias 'brief-mode 'crisp-mode)
+
 (if (fboundp 'add-minor-mode)
     (add-minor-mode 'crisp-mode 'crisp-mode-modeline-string
                    crisp-mode-map nil 'crisp-mode)