# HG changeset patch # User Juanma Barranquero # Date 1030705408 0 # Node ID 895cc47caf773a2c07b039b6363c38a621e03127 # Parent 5a5a4566e9f7ec9918e54e78c9f45f001579dcec (my-mark-marker): Fix typo. diff -r 5a5a4566e9f7 -r 895cc47caf77 lisp/allout.el --- a/lisp/allout.el Fri Aug 30 11:02:54 2002 +0000 +++ b/lisp/allout.el Fri Aug 30 11:03:28 2002 +0000 @@ -5,7 +5,7 @@ ;; Author: Ken Manheimer ;; Maintainer: Ken Manheimer ;; 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 @@ ;;;_ : 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 @@ (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."