comparison lisp/progmodes/ebnf-iso.el @ 52184:2d0c2b7dbf3f

ebnf-no-meta-identifier ==> var instead constant.
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Wed, 13 Aug 2003 00:37:24 +0000
parents cc820064216c
children 695cf19ef79e
comparison
equal deleted inserted replaced
52183:c11b7bac609c 52184:2d0c2b7dbf3f
1 ;;; ebnf-iso.el --- parser for ISO EBNF 1 ;;; ebnf-iso.el --- parser for ISO EBNF
2 2
3 ;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 4
5 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br> 5 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
6 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br> 6 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
7 ;; Keywords: wp, ebnf, PostScript 7 ;; Keywords: wp, ebnf, PostScript
8 ;; Time-stamp: <2003-02-10 10:26:32 jbarranquero> 8 ;; Time-stamp: <2003/08/12 21:29:14 vinicius>
9 ;; Version: 1.6 9 ;; Version: 1.6
10 10
11 ;; This file is part of GNU Emacs. 11 ;; This file is part of GNU Emacs.
12 12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify 13 ;; GNU Emacs is free software; you can redistribute it and/or modify
125 125
126 (defvar ebnf-iso-lex nil 126 (defvar ebnf-iso-lex nil
127 "Value returned by `ebnf-iso-lex' function.") 127 "Value returned by `ebnf-iso-lex' function.")
128 128
129 129
130 (defconst ebnf-no-meta-identifier nil) 130 (defvar ebnf-no-meta-identifier nil
131 "Used by `ebnf-iso-term' and `ebnf-iso-lex' functions.")
131 132
132 133
133 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 134 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
134 ;; Syntactic analyzer 135 ;; Syntactic analyzer
135 136