diff options
| author | Gerd Moellmann | 1999-07-28 19:46:05 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-07-28 19:46:05 +0000 |
| commit | 7a5b8a934b310562e992c102a89c0e96c389785f (patch) | |
| tree | e26da4dd4080af52e86cda0af62bc8eed46c37a9 /src | |
| parent | 29a3028d0436694010b0ebdd04c58ab2a96b1c01 (diff) | |
| download | emacs-7a5b8a934b310562e992c102a89c0e96c389785f.tar.gz emacs-7a5b8a934b310562e992c102a89c0e96c389785f.zip | |
(string_char_and_length): Fix previous change.
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 099d37a515e..d4bf0ca7308 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -868,9 +868,9 @@ window_box_edges (w, area, top_left_x, top_left_y, | |||
| 868 | character. */ | 868 | character. */ |
| 869 | 869 | ||
| 870 | static INLINE int | 870 | static INLINE int |
| 871 | string_char_and_length (str, max_len, len) | 871 | string_char_and_length (str, maxlen, len) |
| 872 | unsigned char *str; | 872 | unsigned char *str; |
| 873 | int max_len, *len; | 873 | int maxlen, *len; |
| 874 | { | 874 | { |
| 875 | int c; | 875 | int c; |
| 876 | 876 | ||