diff options
| author | Stefan Monnier | 2002-06-22 21:15:33 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-06-22 21:15:33 +0000 |
| commit | 93da8435721d0a82bb2d165ab30749ba3e954002 (patch) | |
| tree | 2b4581ed6825cc95ca61422f01b89b0a8afd4c3e /src | |
| parent | ba4c10fd55bc1e855d0827990a999264315d4109 (diff) | |
| download | emacs-93da8435721d0a82bb2d165ab30749ba3e954002.tar.gz emacs-93da8435721d0a82bb2d165ab30749ba3e954002.zip | |
Improve comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index a69d01b1508..53d45451c2f 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -13642,8 +13642,11 @@ Lisp_Object mode_line_proptrans_alist; | |||
| 13642 | 13642 | ||
| 13643 | PROPS is a property list to add to any string we encounter. | 13643 | PROPS is a property list to add to any string we encounter. |
| 13644 | 13644 | ||
| 13645 | If RISKY is nonzero, remove (disregard) any properties in any string | 13645 | If RISKY is nonzero, remove (disregard) any properties in any string |
| 13646 | we encounter, and ignore :eval and :propertize. */ | 13646 | we encounter, and ignore :eval and :propertize. |
| 13647 | |||
| 13648 | If the global variable `frame_title_ptr' is non-NULL, then the output | ||
| 13649 | is passed to `store_frame_title' instead of `display_string'. */ | ||
| 13647 | 13650 | ||
| 13648 | static int | 13651 | static int |
| 13649 | display_mode_element (it, depth, field_width, precision, elt, props, risky) | 13652 | display_mode_element (it, depth, field_width, precision, elt, props, risky) |
| @@ -15353,7 +15356,8 @@ init_xdisp () | |||
| 15353 | } | 15356 | } |
| 15354 | 15357 | ||
| 15355 | { | 15358 | { |
| 15356 | /* Allocate the buffer for frame titles. */ | 15359 | /* Allocate the buffer for frame titles. |
| 15360 | Also used for `format-mode-line'. */ | ||
| 15357 | int size = 100; | 15361 | int size = 100; |
| 15358 | frame_title_buf = (char *) xmalloc (size); | 15362 | frame_title_buf = (char *) xmalloc (size); |
| 15359 | frame_title_buf_end = frame_title_buf + size; | 15363 | frame_title_buf_end = frame_title_buf + size; |