diff options
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2003-08-08 02:32:06 +0000 |
---|---|---|
committer | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2003-08-08 02:32:06 +0000 |
commit | 0f7e3d8c9b3809c629d2c7c0de35a327bf4b6982 (patch) | |
tree | 2b93e9a890a3db2e67e3f5e583cca25f16682a54 /lisp | |
parent | feaaaa99631e3d5e8740ff0cbc3f82ed5018fe3b (diff) | |
download | emacs-0f7e3d8c9b3809c629d2c7c0de35a327bf4b6982.tar.gz |
ebnf-begin-job code fix
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/ebnf2ps.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c8647904d71..6f5662b3761 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br> + + * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix. + + 2003-08-06 Glenn Morris <gmorris@ast.cam.ac.uk> * calendar/calendar.el (list-diary-entries-hook) diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el index e68bcabc9df..7f0a47bccf8 100644 --- a/lisp/progmodes/ebnf2ps.el +++ b/lisp/progmodes/ebnf2ps.el @@ -5,7 +5,7 @@ ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br> ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br> ;; Keywords: wp, ebnf, PostScript -;; Time-stamp: <2003-02-10 10:40:14 jbarranquero> +;; Time-stamp: <2003/08/07 23:23:14 vinicius> ;; Version: 3.6.1 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ @@ -4266,7 +4266,7 @@ end (defun ebnf-begin-job () - (ps-printing-region nil nil) + (ps-printing-region nil nil nil) (if ebnf-use-float-format (setq ebnf-format-float "%1.3f" ebnf-message-float "%3.2f") |