aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2007-06-08 20:05:03 +0000
committerJuanma Barranquero2007-06-08 20:05:03 +0000
commitdb12c2a7e4f5f29a6989987eb92398233343ab7d (patch)
treef086a3d409c3695d0b9d09358ced2bdbb1f98756 /src
parent6ecd75be1a677f46474a15827605ab95573b8738 (diff)
downloademacs-db12c2a7e4f5f29a6989987eb92398233343ab7d.tar.gz
emacs-db12c2a7e4f5f29a6989987eb92398233343ab7d.zip
(Fformat_mode_line, syms_of_xdisp): Use empty_unibyte_string.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 55ab39fd5af..f3e1aa1112c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -17342,7 +17342,7 @@ are the selected window and the window's buffer). */)
17342 CHECK_BUFFER (buffer); 17342 CHECK_BUFFER (buffer);
17343 17343
17344 if (NILP (format)) 17344 if (NILP (format))
17345 return build_string (""); 17345 return empty_unibyte_string;
17346 17346
17347 if (no_props) 17347 if (no_props)
17348 face = Qnil; 17348 face = Qnil;
@@ -17400,7 +17400,7 @@ are the selected window and the window's buffer). */)
17400 { 17400 {
17401 mode_line_string_list = Fnreverse (mode_line_string_list); 17401 mode_line_string_list = Fnreverse (mode_line_string_list);
17402 str = Fmapconcat (intern ("identity"), mode_line_string_list, 17402 str = Fmapconcat (intern ("identity"), mode_line_string_list,
17403 make_string ("", 0)); 17403 empty_unibyte_string);
17404 } 17404 }
17405 17405
17406 unbind_to (count, Qnil); 17406 unbind_to (count, Qnil);
@@ -24081,7 +24081,7 @@ and is used only on frames for which no explicit name has been set
24081 = Vframe_title_format 24081 = Vframe_title_format
24082 = Fcons (intern ("multiple-frames"), 24082 = Fcons (intern ("multiple-frames"),
24083 Fcons (build_string ("%b"), 24083 Fcons (build_string ("%b"),
24084 Fcons (Fcons (empty_string, 24084 Fcons (Fcons (empty_unibyte_string,
24085 Fcons (intern ("invocation-name"), 24085 Fcons (intern ("invocation-name"),
24086 Fcons (build_string ("@"), 24086 Fcons (build_string ("@"),
24087 Fcons (intern ("system-name"), 24087 Fcons (intern ("system-name"),