diff options
| author | Kim F. Storm | 2003-11-23 00:10:40 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-11-23 00:10:40 +0000 |
| commit | 72e72a14685cda4bdeace9befec5634f90287e7f (patch) | |
| tree | e408bd00ff67d2357f97c0e2a4759f73149e5755 /src | |
| parent | 0de01dfe8a6d0ebd4a495b3718fe7edffc5748c1 (diff) | |
| download | emacs-72e72a14685cda4bdeace9befec5634f90287e7f.tar.gz emacs-72e72a14685cda4bdeace9befec5634f90287e7f.zip | |
(note_mode_line_or_margin_highlight): Adapt to new
mode_line_string and marginal_area_string parameters.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 1686dec68c5..90fbead4d17 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -19734,9 +19734,9 @@ note_mode_line_or_margin_highlight (w, x, y, area) | |||
| 19734 | Lisp_Object string, help, map, pos; | 19734 | Lisp_Object string, help, map, pos; |
| 19735 | 19735 | ||
| 19736 | if (area == ON_MODE_LINE || area == ON_HEADER_LINE) | 19736 | if (area == ON_MODE_LINE || area == ON_HEADER_LINE) |
| 19737 | string = mode_line_string (w, x, y, area, &charpos); | 19737 | string = mode_line_string (w, &x, &y, area, &charpos); |
| 19738 | else | 19738 | else |
| 19739 | string = marginal_area_string (w, x, y, area, &charpos); | 19739 | string = marginal_area_string (w, &x, &y, area, &charpos); |
| 19740 | 19740 | ||
| 19741 | if (STRINGP (string)) | 19741 | if (STRINGP (string)) |
| 19742 | { | 19742 | { |