Mercurial > emacs
changeset 52168:282da92e75ee
Move defvar before first use.
author | Vinicius Jose Latorre <viniciusjl@ig.com.br> |
---|---|
date | Sat, 09 Aug 2003 02:17:12 +0000 |
parents | ef4c6b955da0 |
children | b97eb548bcaa |
files | lisp/ChangeLog lisp/progmodes/ebnf2ps.el |
diffstat | 2 files changed, 10 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Aug 08 23:14:48 2003 +0000 +++ b/lisp/ChangeLog Sat Aug 09 02:17:12 2003 +0000 @@ -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.
--- a/lisp/progmodes/ebnf2ps.el Fri Aug 08 23:14:48 2003 +0000 +++ b/lisp/progmodes/ebnf2ps.el Sat Aug 09 02:17:12 2003 +0000 @@ -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 @@ (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 @@ (defvar ebnf-tree nil) (defvar ebnf-direction "R") -(defvar ebnf-total 0) -(defvar ebnf-nprod 0) (defun ebnf-generate-postscript (from to)