diff options
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2007-07-26 13:41:29 +0000 |
---|---|---|
committer | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2007-07-26 13:41:29 +0000 |
commit | 3ced5caae444261e6ce5cea0ff6c20eb4a366ecd (patch) | |
tree | 9f730ae9cf14674b21c6ae4efbfa29e566e87e49 /lisp/progmodes/ebnf-abn.el | |
parent | f4d70220bef14ffa14f42df7892bd8f15ab61f86 (diff) | |
download | emacs-3ced5caae444261e6ce5cea0ff6c20eb4a366ecd.tar.gz |
New: Header/Footer comment & Log messages
Diffstat (limited to 'lisp/progmodes/ebnf-abn.el')
-rw-r--r-- | lisp/progmodes/ebnf-abn.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/progmodes/ebnf-abn.el b/lisp/progmodes/ebnf-abn.el index 5e0d4b41820..44034bde3d5 100644 --- a/lisp/progmodes/ebnf-abn.el +++ b/lisp/progmodes/ebnf-abn.el @@ -6,7 +6,7 @@ ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> ;; Keywords: wp, ebnf, PostScript -;; Version: 1.1 +;; Version: 1.2 ;; This file is part of GNU Emacs. @@ -589,6 +589,12 @@ See documentation for variable `ebnf-abn-lex'." ;; close EPS file ((and ebnf-eps-executing (= (following-char) ?\])) (ebnf-eps-remove-context (ebnf-abn-eps-filename))) + ;; EPS header + ((and ebnf-eps-executing (= (following-char) ?H)) + (ebnf-eps-header-comment (ebnf-abn-eps-filename))) + ;; EPS footer + ((and ebnf-eps-executing (= (following-char) ?F)) + (ebnf-eps-footer-comment (ebnf-abn-eps-filename))) ;; any other action in comment (t (setq ebnf-action (aref ebnf-comment-table (following-char))) |