comparison lisp/=ada.el @ 807:4f28bd14272c

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Thu, 16 Jul 1992 21:47:34 +0000
parents 8a533acedb77
children 213978acbc1e
comparison
equal deleted inserted replaced
806:d42e1151eed8 807:4f28bd14272c
1 ;;; ada.el --- Ada editing support package in GNUlisp. v1.0 1 ;;; ada.el --- Ada editing support package in GNUlisp. v1.0
2 2
3 ; Author: Vincent Broman <broman@bugs.nosc.mil> May 1987. 3 ;; Author: Vincent Broman <broman@bugs.nosc.mil>
4 ; (borrows heavily from Mick Jordan's Modula-2 package for GNU, 4 ;; Last-Modified: 30 Jan 1991
5 ; as modified by Peter Robinson, Michael Schmidt, and Tom Perrine.) 5 ;; Keywords: languages
6 6
7 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. 7 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
8 8
9 ;; This file is part of GNU Emacs. 9 ;; This file is part of GNU Emacs.
10 10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify 11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by 12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 1, or (at your option) 13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version. 14 ;; any later version.
15 15
16 ;; GNU Emacs is distributed in the hope that it will be useful, 16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details. 19 ;; GNU General Public License for more details.
20 20
21 ;; You should have received a copy of the GNU General Public License 21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to 22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;; Created May 1987.
28 ;; (borrows heavily from Mick Jordan's Modula-2 package for GNU,
29 ;; as modified by Peter Robinson, Michael Schmidt, and Tom Perrine.)
30
31 ;;; Code:
24 32
25 (setq auto-mode-alist (cons (cons "\\.ada$" 'ada-mode) auto-mode-alist)) 33 (setq auto-mode-alist (cons (cons "\\.ada$" 'ada-mode) auto-mode-alist))
26 34
27 (defvar ada-mode-syntax-table nil 35 (defvar ada-mode-syntax-table nil
28 "Syntax table in use in Ada-mode buffers.") 36 "Syntax table in use in Ada-mode buffers.")