summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>1993-03-17 16:56:02 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>1993-03-17 16:56:02 +0000
commitaae56ea7ca8c74e7bb5595b828851aaa9f947792 (patch)
tree464b508b0ece6a20291b838d52ec33305d66a541 /lisp/emacs-lisp
parentc7986c187611e2f908263a9ad5f104a8ef78d3dc (diff)
downloademacs-aae56ea7ca8c74e7bb5595b828851aaa9f947792.tar.gz
emacs-aae56ea7ca8c74e7bb5595b828851aaa9f947792.tar.bz2
emacs-aae56ea7ca8c74e7bb5595b828851aaa9f947792.zip
Add standard library headers.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/levents.el5
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
-rw-r--r--lisp/emacs-lisp/lmenu.el6
3 files changed, 10 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/levents.el b/lisp/emacs-lisp/levents.el
index 1a15e725e73..1c67ba946fb 100644
--- a/lisp/emacs-lisp/levents.el
+++ b/lisp/emacs-lisp/levents.el
@@ -1,4 +1,5 @@
-;; Emulate the Lucid event data type and associated functions.
+;;; levents.el --- emulate the Lucid event data type and associated functions.
+
;; Copyright (C) 1993 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -17,7 +18,7 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
-;;; Notes:
+;;; Commentary:
;; Things we cannot emulate in Lisp:
;; It is not possible to emulate current-mouse-event as a variable,
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index ca464984613..f56fefedf00 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -21,6 +21,8 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
+
(defvar lisp-mode-syntax-table nil "")
(defvar emacs-lisp-mode-syntax-table nil "")
(defvar lisp-mode-abbrev-table nil "")
diff --git a/lisp/emacs-lisp/lmenu.el b/lisp/emacs-lisp/lmenu.el
index 9b49c77ff76..0e7e331acb9 100644
--- a/lisp/emacs-lisp/lmenu.el
+++ b/lisp/emacs-lisp/lmenu.el
@@ -1,4 +1,5 @@
-;;; Menubar support.
+;;; lmenu.el --- emulate Lucid's menubar support
+
;; Copyright (C) 1992, 1993 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
@@ -17,6 +18,8 @@
;; along with GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+;;; Code:
+
;; First, emulate the Lucid menubar support in GNU Emacs 19.
@@ -633,3 +636,4 @@ You can control the text of the menu items by redefining the function
(provide 'menubar)
+;;; lmenu.el ends here