diff options
author | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-03-16 20:39:07 +0000 |
commit | 49116ac071969bee7f129bf7ce725c7a5b0b0fc5 (patch) | |
tree | 60c249f15b04478367256fef95c6fd7557f263b9 /lisp/abbrevlist.el | |
parent | 3b4a6e271d44955328c39de1475e42cf0b4cd637 (diff) | |
download | emacs-49116ac071969bee7f129bf7ce725c7a5b0b0fc5.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/abbrevlist.el')
-rw-r--r-- | lisp/abbrevlist.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/abbrevlist.el b/lisp/abbrevlist.el index 554bacd645f..a7942248dde 100644 --- a/lisp/abbrevlist.el +++ b/lisp/abbrevlist.el @@ -1,5 +1,5 @@ ;; List one abbrev table alphabetically ordered. -;; Copyright (C) 1986 Free Software Foundation, Inc. +;; Copyright (C) 1986, 1992 Free Software Foundation, Inc. ;; Suggested by a previous version by Gildea. ;; This file is part of GNU Emacs. @@ -19,8 +19,6 @@ ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -(provide 'abbrevlist) - (defun list-one-abbrev-table (abbrev-table output-buffer) "Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER." (with-output-to-temp-buffer output-buffer @@ -43,3 +41,6 @@ (insert (symbol-value (car abbrev-list))) (setq first-column (+ first-column 40)) (setq abbrev-list (cdr abbrev-list))))))) + +(provide 'abbrevlist) + |