From 2197ec3b92ce3b007eb28830ef458e2551327dd4 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Thu, 21 Dec 2000 21:23:06 +0000 Subject: [PATCH] Fix the same problem as described on ebnf2ps.el log entry. Doc fix. (ebnf-iso-comment-chars): Const fix. --- lisp/progmodes/ebnf-iso.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 () -- 2.39.2