Mercurial > emacs
changeset 34805:aef14b635283
Fix the same problem as described on ebnf2ps.el log
entry. Doc fix.
(ebnf-iso-comment-chars): Const fix.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 21 Dec 2000 21:23:06 +0000 |
parents | 3347fac37b3d |
children | 891b73bae2ff |
files | lisp/progmodes/ebnf-iso.el |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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 @@ )))) -(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 ()