Add standard library headers.

This commit is contained in:
Eric S. Raymond 1993-03-17 16:56:02 +00:00
parent c7986c1876
commit aae56ea7ca
12 changed files with 36 additions and 15 deletions

View file

@ -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,

View file

@ -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 "")

View file

@ -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