mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
small patch from dekel
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@718 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8c818bc598
commit
1b10def63a
@ -1,3 +1,10 @@
|
|||||||
|
2000-05-05 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
|
* lib/lyxrc.example: remove obsolete entries.
|
||||||
|
|
||||||
|
* src/buffer.C (parseSingleLyXformat2Token): patch from dekel, fix
|
||||||
|
reading of protected_separator for free_spacing.
|
||||||
|
|
||||||
2000-05-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
2000-05-05 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||||
|
|
||||||
* src/text.C (draw): do not display an exclamation mark in the
|
* src/text.C (draw): do not display an exclamation mark in the
|
||||||
|
@ -663,7 +663,6 @@
|
|||||||
#\kbmap_secondary hebrew
|
#\kbmap_secondary hebrew
|
||||||
#\latex_command elatex
|
#\latex_command elatex
|
||||||
#\font_encoding default
|
#\font_encoding default
|
||||||
#\number_inset rtl
|
|
||||||
|
|
||||||
# You also need to bind a key for switching between Hebrew and English.
|
# You also need to bind a key for switching between Hebrew and English.
|
||||||
# For example,
|
# For example,
|
||||||
@ -687,7 +686,6 @@
|
|||||||
#\kbmap true
|
#\kbmap true
|
||||||
#\kbmap_primary null
|
#\kbmap_primary null
|
||||||
#\kbmap_secondary arabic
|
#\kbmap_secondary arabic
|
||||||
#\number_inset false
|
|
||||||
|
|
||||||
# You also need to bind a key for switching between Arabic and English.
|
# You also need to bind a key for switching between Arabic and English.
|
||||||
# For example,
|
# For example,
|
||||||
|
@ -987,7 +987,8 @@ Buffer::parseSingleLyXformat2Token(LyXLex & lex, LyXParagraph *& par,
|
|||||||
if (next_token == "\\-") {
|
if (next_token == "\\-") {
|
||||||
par->InsertChar(pos, '-');
|
par->InsertChar(pos, '-');
|
||||||
par->SetFont(pos, font);
|
par->SetFont(pos, font);
|
||||||
} else if (next_token == "\\protected_separator") {
|
} else if (next_token == "\\protected_separator"
|
||||||
|
|| next_token == '~') {
|
||||||
par->InsertChar(pos, ' ');
|
par->InsertChar(pos, ' ');
|
||||||
par->SetFont(pos, font);
|
par->SetFont(pos, font);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user