Mercurial > emacs
changeset 45969:9436aa954ea3
Improve comments.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 22 Jun 2002 21:15:33 +0000 |
parents | 6bf20f37b7c7 |
children | e4f4f706201f |
files | src/xdisp.c |
diffstat | 1 files changed, 7 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Sat Jun 22 21:13:11 2002 +0000 +++ b/src/xdisp.c Sat Jun 22 21:15:33 2002 +0000 @@ -13642,8 +13642,11 @@ PROPS is a property list to add to any string we encounter. - If RISKY is nonzero, remove (disregard) any properties in any string - we encounter, and ignore :eval and :propertize. */ + If RISKY is nonzero, remove (disregard) any properties in any string + we encounter, and ignore :eval and :propertize. + + If the global variable `frame_title_ptr' is non-NULL, then the output + is passed to `store_frame_title' instead of `display_string'. */ static int display_mode_element (it, depth, field_width, precision, elt, props, risky) @@ -15353,7 +15356,8 @@ } { - /* Allocate the buffer for frame titles. */ + /* Allocate the buffer for frame titles. + Also used for `format-mode-line'. */ int size = 100; frame_title_buf = (char *) xmalloc (size); frame_title_buf_end = frame_title_buf + size;