# HG changeset patch # User Gerd Moellmann # Date 977433786 0 # Node ID aef14b635283e8ba42e82de4b22a93a5ef188640 # Parent 3347fac37b3db4759228ae724a19e4ea60094383 Fix the same problem as described on ebnf2ps.el log entry. Doc fix. (ebnf-iso-comment-chars): Const fix. diff -r 3347fac37b3d -r aef14b635283 lisp/progmodes/ebnf-iso.el --- a/lisp/progmodes/ebnf-iso.el Thu Dec 21 21:22:51 2000 +0000 +++ b/lisp/progmodes/ebnf-iso.el Thu Dec 21 21:23:06 2000 +0000 @@ -5,8 +5,8 @@ ;; Author: Vinicius Jose Latorre ;; Maintainer: Vinicius Jose Latorre ;; 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 @@ )))) -(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 ()