comparison lisp/progmodes/mixal-mode.el @ 90996:f55f9811f5d7

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 824-831) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 70-74) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-238
author Miles Bader <miles@gnu.org>
date Fri, 27 Jul 2007 10:52:18 +0000
parents e9f94688a064 c1ec1c8a8d2e
children 880960b70474
comparison
equal deleted inserted replaced
90995:9a391d85a79f 90996:f55f9811f5d7
1 ;;; mixal-mode.el --- Major mode for the mix asm language. 1 ;;; mixal-mode.el --- Major mode for the mix asm language.
2 2
3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007 3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007
4 ;; Free Software Foundation, Inc. 4 ;; Free Software Foundation, Inc.
5
6 ;; This program is free software; you can redistribute it and/or
7 ;; modify it under the terms of the GNU General Public License as
8 ;; published by the Free Software Foundation; either version 2 of
9 ;; the License, or (at your option) any later version.
10
11 ;; This program is distributed in the hope that it will be
12 ;; useful, but WITHOUT ANY WARRANTY; without even the implied
13 ;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 ;; PURPOSE. See the GNU General Public License for more details.
15
16 ;; You should have received a copy of the GNU General Public
17 ;; License along with this program; if not, write to the Free
18 ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 ;; MA 02110-1301 USA
20 5
21 ;; Author: Pieter E.J. Pareit <pieter.pareit@gmail.com> 6 ;; Author: Pieter E.J. Pareit <pieter.pareit@gmail.com>
22 ;; Maintainer: Pieter E.J. Pareit <pieter.pareit@gmail.com> 7 ;; Maintainer: Pieter E.J. Pareit <pieter.pareit@gmail.com>
23 ;; Created: 09 Nov 2002 8 ;; Created: 09 Nov 2002
24 ;; Version: 0.1 9 ;; Version: 0.1
25 ;; Keywords: Knuth mix mixal asm mixvm "The Art Of Computer Programming" 10 ;; Keywords: Knuth mix mixal asm mixvm "The Art Of Computer Programming"
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27 ;; Boston, MA 02110-1301, USA.
26 28
27 ;;; Commentary: 29 ;;; Commentary:
28 ;; Major mode for the mix asm language. 30 ;; Major mode for the mix asm language.
29 ;; The mix asm language is described in "The Art Of Computer Programming". 31 ;; The mix asm language is described in "The Art Of Computer Programming".
30 ;; 32 ;;