aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid J. MacKenzie1993-08-19 22:29:35 +0000
committerDavid J. MacKenzie1993-08-19 22:29:35 +0000
commit75f9d62502121ee19b92611bcca4e74a14548dcc (patch)
tree53f0016f443420150a67fd53308d7234638a1baa /src
parent252e4dba33c9b2d13b540c09d91ee9b38bed696e (diff)
downloademacs-75f9d62502121ee19b92611bcca4e74a14548dcc.tar.gz
emacs-75f9d62502121ee19b92611bcca4e74a14548dcc.zip
comment fix
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 5da5acf62b9..1997d4ff626 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -995,12 +995,12 @@ x_set_menu_bar_lines (f, value, oldval)
995 x_set_menu_bar_lines_1 (f->root_window, nlines - olines); 995 x_set_menu_bar_lines_1 (f->root_window, nlines - olines);
996} 996}
997 997
998/* Change the name of frame F to ARG. If ARG is nil, set F's name to 998/* Change the name of frame F to NAME. If NAME is nil, set F's name to
999 x_id_name. 999 x_id_name.
1000 1000
1001 If EXPLICIT is non-zero, that indicates that lisp code is setting the 1001 If EXPLICIT is non-zero, that indicates that lisp code is setting the
1002 name; if ARG is a string, set F's name to ARG and set 1002 name; if NAME is a string, set F's name to NAME and set
1003 F->explicit_name; if ARG is Qnil, then clear F->explicit_name. 1003 F->explicit_name; if NAME is Qnil, then clear F->explicit_name.
1004 1004
1005 If EXPLICIT is zero, that indicates that Emacs redisplay code is 1005 If EXPLICIT is zero, that indicates that Emacs redisplay code is
1006 suggesting a new name, which lisp code should override; if 1006 suggesting a new name, which lisp code should override; if