diff options
| author | Juanma Barranquero | 2009-10-26 16:20:44 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-10-26 16:20:44 +0000 |
| commit | 782a943e7f7f249787627c951276c6c028c3dbdb (patch) | |
| tree | 9f517679a7bd100c47b9c41c7a6c0eb81143ef11 /src | |
| parent | 057bce6f17f527439a01b181ecfc11b1c828466d (diff) | |
| download | emacs-782a943e7f7f249787627c951276c6c028c3dbdb.tar.gz emacs-782a943e7f7f249787627c951276c6c028c3dbdb.zip | |
* minibuf.c (Fall_completions): Fix typos in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5752604f4c9..2f045d25828 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 2009-10-26 Juanma Barranquero <lekktu@gmail.com> | 1 | 2009-10-26 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * minibuf.c (Fall_completions): Fix typo in docstring. | 3 | * minibuf.c (Fall_completions): Fix typos in docstring. |
| 4 | 4 | ||
| 5 | 2009-10-26 Andreas Schwab <schwab@redhat.com> | 5 | 2009-10-26 Andreas Schwab <schwab@redhat.com> |
| 6 | 6 | ||
diff --git a/src/minibuf.c b/src/minibuf.c index 06e2fc5e912..5cf89f286a1 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1561,7 +1561,7 @@ predicate is called with two arguments: the key and the value. | |||
| 1561 | Additionally to this predicate, `completion-regexp-list' | 1561 | Additionally to this predicate, `completion-regexp-list' |
| 1562 | is used to further constrain the set of candidates. | 1562 | is used to further constrain the set of candidates. |
| 1563 | 1563 | ||
| 1564 | An osbolete optional fourth argument HIDE-SPACES is still accepted for | 1564 | An obsolete optional fourth argument HIDE-SPACES is still accepted for |
| 1565 | backward compatibility. If non-nil, strings in COLLECTION that start | 1565 | backward compatibility. If non-nil, strings in COLLECTION that start |
| 1566 | with a space are ignored unless STRING itself starts with a space. */) | 1566 | with a space are ignored unless STRING itself starts with a space. */) |
| 1567 | (string, collection, predicate, hide_spaces) | 1567 | (string, collection, predicate, hide_spaces) |