From: Gerd Moellmann Date: Thu, 21 Dec 2000 21:23:06 +0000 (+0000) Subject: Fix the same problem as described on ebnf2ps.el log X-Git-Tag: emacs-pretest-21.0.95~327 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2197ec3b92ce3b007eb28830ef458e2551327dd4;p=emacs.git Fix the same problem as described on ebnf2ps.el log entry. Doc fix. (ebnf-iso-comment-chars): Const fix. --- diff --git a/lisp/progmodes/ebnf-iso.el b/lisp/progmodes/ebnf-iso.el index e5bf10dcb0f..c5716f4a6ea 100644 --- a/lisp/progmodes/ebnf-iso.el +++ b/lisp/progmodes/ebnf-iso.el @@ -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 @@ 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 ()