diff options
| author | Jim Blandy | 1993-06-19 21:06:18 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-19 21:06:18 +0000 |
| commit | a1b4b084b13ee786951f9878e2c5c6a89af8e5d3 (patch) | |
| tree | b54f71cf976e87d58a32c84cd560ebfe4faf025f /src | |
| parent | 39b62b3bf31e9111e7879908e8a56a6546a645bd (diff) | |
| download | emacs-a1b4b084b13ee786951f9878e2c5c6a89af8e5d3.tar.gz emacs-a1b4b084b13ee786951f9878e2c5c6a89af8e5d3.zip | |
* minibuf.c (Fread_minibuffer): Add missing semicolon after
CHECK_STRING macro.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index f7043d8afa6..b57cf4c73f4 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -415,7 +415,7 @@ is a string to insert in the minibuffer before reading.") | |||
| 415 | { | 415 | { |
| 416 | CHECK_STRING (prompt, 0); | 416 | CHECK_STRING (prompt, 0); |
| 417 | if (!NILP (initial_contents)) | 417 | if (!NILP (initial_contents)) |
| 418 | CHECK_STRING (initial_contents, 1) | 418 | CHECK_STRING (initial_contents, 1); |
| 419 | return read_minibuf (Vminibuffer_local_map, initial_contents, | 419 | return read_minibuf (Vminibuffer_local_map, initial_contents, |
| 420 | prompt, Qnil, 1, Qminibuffer_history, make_number (0)); | 420 | prompt, Qnil, 1, Qminibuffer_history, make_number (0)); |
| 421 | } | 421 | } |