Mercurial > emacs
changeset 26815:9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
stuff. Don't set zmacs-region-stays.
(footnote-insert-text-marker, Footnote-insert-pointer-marker): Avoid
`acons'.
(footnote-mode-line-string, Footnote-add-footnote): Remove autoload
cookie.
author | Dave Love <fx@gnu.org> |
---|---|
date | Sun, 12 Dec 1999 16:04:25 +0000 |
parents | b6966be704a9 |
children | e719053e967a |
files | lisp/mail/footnote.el |
diffstat | 1 files changed, 10 insertions(+), 27 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/footnote.el Sun Dec 12 13:23:20 1999 +0000 +++ b/lisp/mail/footnote.el Sun Dec 12 16:04:25 1999 +0000 @@ -6,25 +6,23 @@ ;; Keywords: mail, news ;; Version: 0.19 -;; This file is part of XEmacs. +;; This file is part of GNU Emacs. -;; XEmacs is free software; you can redistribute it and/or modify it +;; GNU Emacs is free software; you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. -;; XEmacs is distributed in the hope that it will be useful, but +;; GNU Emacs is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with XEmacs; see the file COPYING. If not, write to the Free +;; along with GNU Emacs; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ;; 02111-1307, USA. -;;; Synched up with: Not in FSF - ;;; Commentary: ;; This file provides footnote[1] support for message-mode in emacsen. @@ -59,11 +57,14 @@ ;;; Code: +(eval-when-compile + (require 'cl) + (defvar filladapt-token-table)) + (defgroup footnote nil "Support for footnotes in mail and news messages." :group 'message) -;;;###autoload (defcustom footnote-mode-line-string " FN" "*String to display in modes section of the mode-line." :group 'footnote) @@ -112,7 +113,6 @@ :type 'integer :group 'footnote) -;;;###autoload (defvar footnote-prefix [(control ?c) ?!] "*When not using message mode, the prefix to bind in `mode-specific-map'") @@ -456,7 +456,7 @@ (unless (assq arg footnote-text-marker-alist) (set-marker marker locn) (setq footnote-text-marker-alist - (acons arg marker footnote-text-marker-alist)) + (cons (cons arg marker) footnote-text-marker-alist)) (setq footnote-text-marker-alist (Footnote-sort footnote-text-marker-alist))))) @@ -469,7 +469,7 @@ (setf alist (cons marker (cdr alist))) (setq footnote-pointer-marker-alist - (acons arg (list marker) footnote-pointer-marker-alist)) + (cons (cons arg (list marker)) footnote-pointer-marker-alist)) (setq footnote-pointer-marker-alist (Footnote-sort footnote-pointer-marker-alist))))) @@ -564,7 +564,6 @@ (setq i (1+ i))) rc))) -;;;###autoload (defun Footnote-add-footnote (&optional arg) "Add a numbered footnote. The number the footnote receives is dependent upon the relative location @@ -658,7 +657,6 @@ With no parameter, jump to the text of the footnote under (point). With arg specified, jump to the text of that footnote." (interactive "P") - (setq zmacs-region-stays t) (let (footnote) (if arg (setq footnote (assq arg footnote-text-marker-alist)) @@ -679,19 +677,16 @@ If the buffer was narrowed due to `footnote-narrow-to-footnotes-when-editing' being set it is automatically widened." (interactive "P") - (setq zmacs-region-stays t) (let ((note (Footnote-text-under-cursor))) (when note (when footnote-narrow-to-footnotes-when-editing (widen)) (goto-char (cadr (assq note footnote-pointer-marker-alist)))))) -;;;###autoload (defvar footnote-mode-map nil "Keymap used for footnote minor mode.") ;; Set up our keys -;;;###autoload (unless footnote-mode-map (setq footnote-mode-map (make-sparse-keymap)) (define-key footnote-mode-map "a" 'Footnote-add-footnote) @@ -702,11 +697,9 @@ (define-key footnote-mode-map "r" 'Footnote-renumber-footnotes) (define-key footnote-mode-map "s" 'Footnote-set-style)) -;;;###autoload (defvar footnote-minor-mode-map nil "Keymap used for binding footnote minor mode.") -;;;###autoload (unless footnote-minor-mode-map (define-key global-map footnote-prefix footnote-mode-map)) @@ -726,7 +719,6 @@ " (interactive "*P") ;; (filladapt-mode t) - (setq zmacs-region-stays t) (setq footnote-mode (if (null arg) (not footnote-mode) (> (prefix-numeric-value arg) 0))) @@ -752,15 +744,6 @@ (run-hooks 'footnote-mode-hook))) -;; install on minor-mode-alist -;;;###autoload -(when (fboundp 'add-minor-mode) - ;; XEmacs - (add-minor-mode 'footnote-mode - footnote-mode-line-string - footnote-minor-mode-map)) - -;; Emacs -- don't autoload (unless (assq 'footnote-mode minor-mode-alist) (setq minor-mode-alist (cons '(footnote-mode footnote-mode-line-string)