diff options
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2003-08-09 02:17:12 +0000 |
---|---|---|
committer | Vinicius Jose Latorre <viniciusjl@ig.com.br> | 2003-08-09 02:17:12 +0000 |
commit | 30fa28b494b75a5ad8c84bd8acbb8c295e408a6a (patch) | |
tree | 5bc3314bbfdef02f967980ec6a432d6c3a680c9c /lisp | |
parent | f29181dc5d953bd811e723489d59838a71152739 (diff) | |
download | emacs-30fa28b494b75a5ad8c84bd8acbb8c295e408a6a.tar.gz |
Move defvar before first use.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/progmodes/ebnf2ps.el | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0018c992736..16a2a015588 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-08-08 Vinicius Jose Latorre <viniciusjl@ig.com.br> + + * progmodes/ebnf2ps.el (ebnf-total, ebnf-nprod): Move defvar before + first use. + 2003-08-07 Vinicius Jose Latorre <viniciusjl@ig.com.br> * progmodes/ebnf2ps.el (ebnf-begin-job): Code fix. diff --git a/lisp/progmodes/ebnf2ps.el b/lisp/progmodes/ebnf2ps.el index 7f0a47bccf8..42417c4d5e2 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/08/07 23:23:14 vinicius> +;; Time-stamp: <2003/08/08 23:09:36 vinicius> ;; Version: 3.6.1 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ @@ -3594,6 +3594,10 @@ end (format ebnf-message-float value))) +(defvar ebnf-total 0) +(defvar ebnf-nprod 0) + + (defsubst ebnf-message-info (messag) (message "%s...%3d%%" messag @@ -3814,8 +3818,6 @@ end (defvar ebnf-tree nil) (defvar ebnf-direction "R") -(defvar ebnf-total 0) -(defvar ebnf-nprod 0) (defun ebnf-generate-postscript (from to) |