diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-08-30 11:03:28 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-08-30 11:03:28 +0000 |
commit | 764079389b8c9e9979617939fbb80c2d747214db (patch) | |
tree | 7c0b0c6a1e9c73f63b09f2ef118bf7d0ad9ba7d5 /lisp/allout.el | |
parent | 674e010d7dd9f620068eb5b254400b73df53c1ba (diff) | |
download | emacs-764079389b8c9e9979617939fbb80c2d747214db.tar.gz |
(my-mark-marker): Fix typo.
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index ce6bfe0872d..491ef5171d2 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -5,7 +5,7 @@ ;; Author: Ken Manheimer <klm@python.org> ;; Maintainer: Ken Manheimer <klm@python.org> ;; Created: Dec 1991 - first release to usenet -;; Version: $Id: allout.el,v 1.32 2002/03/27 20:13:03 pj Exp $|| +;; Version: $Id: allout.el,v 1.33 2002/07/03 13:19:13 lektu Exp $|| ;; Keywords: outlines mode wp languages ;; This file is part of GNU Emacs. @@ -509,7 +509,7 @@ behavior." ;;;_ : Version ;;;_ = outline-version (defvar outline-version - (let ((rcs-rev "$Revision: 1.32 $")) + (let ((rcs-rev "$Revision: 1.33 $")) (condition-case err (save-match-data (string-match "Revision: \\([0-9]+\\.[0-9]+\\)" rcs-rev) @@ -4729,9 +4729,9 @@ function. If HOOK is void, it is first set to nil." (if append (nconc (symbol-value hook) (list function)) (cons function (symbol-value hook))))))) -;;;_ : my-mark-marker to accomodate divergent emacsen: +;;;_ : my-mark-marker to accommodate divergent emacsen: (defun my-mark-marker (&optional force buffer) - "Accomodate the different signature for mark-marker across emacsen. + "Accommodate the different signature for mark-marker across emacsen. GNU XEmacs takes two optional args, while mainline GNU Emacs does not, so pass them along when appropriate." |