diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-19 21:06:18 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-19 21:06:18 +0000 |
commit | a1b4b084b13ee786951f9878e2c5c6a89af8e5d3 (patch) | |
tree | b54f71cf976e87d58a32c84cd560ebfe4faf025f /src | |
parent | 39b62b3bf31e9111e7879908e8a56a6546a645bd (diff) | |
download | emacs-a1b4b084b13ee786951f9878e2c5c6a89af8e5d3.tar.gz |
* 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.") { CHECK_STRING (prompt, 0); if (!NILP (initial_contents)) - CHECK_STRING (initial_contents, 1) + CHECK_STRING (initial_contents, 1); return read_minibuf (Vminibuffer_local_map, initial_contents, prompt, Qnil, 1, Qminibuffer_history, make_number (0)); } |