aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1992-06-04 02:40:51 +0000
committerRichard M. Stallman1992-06-04 02:40:51 +0000
commit3371bdfcb62354eb8ce68f5636edeab379bf0eab (patch)
tree61a5ccfe5eb814ac899154d9c11dbabe0b66187b /src
parentab17c3f26e949ede71d16587e5be6c97ac190930 (diff)
downloademacs-3371bdfcb62354eb8ce68f5636edeab379bf0eab.tar.gz
emacs-3371bdfcb62354eb8ce68f5636edeab379bf0eab.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c5
-rw-r--r--src/minibuf.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index a935c5bd94a..910a4b9a77f 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1451,8 +1451,9 @@ tracking_off (old_value)
1451 1451
1452DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0, 1452DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
1453 "Evaluate BODY with mouse movement and button release events enabled.\n\ 1453 "Evaluate BODY with mouse movement and button release events enabled.\n\
1454Within a track-mouse, read-event reports mouse movement and button releases;\n\ 1454Within a `track-mouse', mouse motion and button releases generate input\n\
1455otherwise, they are ignored.") 1455events that you can read with `read-event'.\n\
1456Normally, these occurrences don't generate events.")
1456 (args) 1457 (args)
1457 Lisp_Object args; 1458 Lisp_Object args;
1458{ 1459{
diff --git a/src/minibuf.c b/src/minibuf.c
index df45dac7483..e024e5ecd11 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -732,7 +732,7 @@ Lisp_Object Vminibuffer_completion_confirm, Qminibuffer_completion_confirm;
732 732
733DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0, 733DEFUN ("completing-read", Fcompleting_read, Scompleting_read, 2, 6, 0,
734 "Read a string in the minibuffer, with completion.\n\ 734 "Read a string in the minibuffer, with completion.\n\
735Args are PROMPT, TABLE, PREDICATE, REQUIRE-MATCH and INITIAL-INPUT.\n\ 735Args: PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, BACKUP-N.\n\
736PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\ 736PROMPT is a string to prompt with; normally it ends in a colon and a space.\n\
737TABLE is an alist whose elements' cars are strings, or an obarray.\n\ 737TABLE is an alist whose elements' cars are strings, or an obarray.\n\
738PREDICATE limits completion to a subset of TABLE.\n\ 738PREDICATE limits completion to a subset of TABLE.\n\