mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
\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:
parent
8729126a15
commit
dfd6aaa245
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user