\print_extra_options now uses next() to read its arguments.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@205 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 1999-10-18 10:43:59 +00:00
parent 8729126a15
commit dfd6aaa245
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1999-10-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
LyXLex::netx() and not eatline() to get its argument.
1999-10-16 Lars Gullik Bjønnes <larsbj@lyx.org>
* Makefile.am (rpmdist): added a rpmdist target

View File

@ -322,7 +322,7 @@
# Extra options to pass to printing program after everything
# else, but before the filename of the DVI file to be printed.
#\print_extra_options
#\print_extra_options ""
# When set, this printer option automatically prints to a file
# and then calls a separate print spooling program on that file

View File

@ -448,7 +448,7 @@ int LyXRC::Read(string const &filename)
break;
case RC_PRINTEXSTRAOPTIONS:
if (lexrc.EatLine())
if (lexrc.next())
print_extra_options = lexrc.GetString();
break;