]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the same problem as described on ebnf2ps.el log
authorGerd Moellmann <gerd@gnu.org>
Thu, 21 Dec 2000 21:23:06 +0000 (21:23 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 21 Dec 2000 21:23:06 +0000 (21:23 +0000)
entry.  Doc fix.
(ebnf-iso-comment-chars): Const fix.

lisp/progmodes/ebnf-iso.el

index e5bf10dcb0fb604b3fe670e946553540f1d7fdda..c5716f4a6eaaa8febd5817b7106983cfd17ba38a 100644 (file)
@@ -5,8 +5,8 @@
 ;; Author:     Vinicius Jose Latorre <vinicius@cpqd.com.br>
 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
 ;; Keywords:   wp, ebnf, PostScript
-;; Time-stamp: <99/11/20 18:04:11 vinicius>
-;; Version:    1.4
+;; Time-stamp: <2000/12/19 15:25:16 vinicius>
+;; Version:    1.5
 
 ;; This file is part of GNU Emacs.
 
@@ -489,7 +489,9 @@ See documentation for variable `ebnf-iso-lex'."
        ))))
 
 
-(defconst ebnf-iso-comment-chars "^*(\000-\010\016-\037\177-\237")
+;; replace the range "\177-\237" (see `ebnf-range-regexp').
+(defconst ebnf-iso-comment-chars
+  (ebnf-range-regexp "^*(\000-\010\016-\037" ?\177 ?\237))
 
 
 (defun ebnf-iso-skip-comment ()