summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwl <wl>2013-01-07 06:15:49 +0000
committerwl <wl>2013-01-07 06:15:49 +0000
commit6d0559694bda4518ef719263e57b59292a3e4bf4 (patch)
tree7d5e6971e8ee8270a1f5dccc134fb3e9ab93de1e /src
parent252bac7d299094e44f1d0aedffb67034d601ad04 (diff)
downloadgroff-6d0559694bda4518ef719263e57b59292a3e4bf4.tar.gz
Whitespace.
Diffstat (limited to 'src')
-rw-r--r--src/preproc/eqn/lex.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/preproc/eqn/lex.cpp b/src/preproc/eqn/lex.cpp
index ed8930f5..39917a67 100644
--- a/src/preproc/eqn/lex.cpp
+++ b/src/preproc/eqn/lex.cpp
@@ -1072,16 +1072,16 @@ void do_delim()
if (c == 'o' && d == 'f' && peek_char() == 'f') {
(void)get_char();
if (start_delim)
- start_delim_saved = start_delim;
+ start_delim_saved = start_delim;
if (end_delim)
- end_delim_saved = end_delim;
+ end_delim_saved = end_delim;
start_delim = end_delim = '\0';
}
else if (c == 'o' && d == 'n' && !compatible_flag) {
if (start_delim_saved)
- start_delim = start_delim_saved;
+ start_delim = start_delim_saved;
if (end_delim_saved)
- end_delim = end_delim_saved;
+ end_delim = end_delim_saved;
}
else {
start_delim = c;