aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-30 15:11:53 +0000
committerGerd Moellmann2001-03-30 15:11:53 +0000
commitcabf45daae770df62714263eef92a90934f25dd9 (patch)
treeb3bc2ffd9b61047b2456a6fd93b4b7a8d30db20d
parent73d75a6228376eb5038a25bc793baaf3b913237d (diff)
downloademacs-cabf45daae770df62714263eef92a90934f25dd9.tar.gz
emacs-cabf45daae770df62714263eef92a90934f25dd9.zip
(reseat_to_string): Undo last change.
-rw-r--r--src/xdisp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index f17467f63c7..ca57381d21c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -4006,9 +4006,7 @@ reseat_to_string (it, s, string, charpos, precision, field_width, multibyte)
4006 4006
4007 /* If STRING is specified, use its multibyteness, otherwise use the 4007 /* If STRING is specified, use its multibyteness, otherwise use the
4008 setting of MULTIBYTE, if specified. */ 4008 setting of MULTIBYTE, if specified. */
4009 if (STRINGP (string)) 4009 if (multibyte >= 0)
4010 it->multibyte_p = STRING_MULTIBYTE (string);
4011 else if (multibyte >= 0)
4012 it->multibyte_p = multibyte > 0; 4010 it->multibyte_p = multibyte > 0;
4013 4011
4014 if (s == NULL) 4012 if (s == NULL)