diff options
| author | Juanma Barranquero | 2011-09-28 02:59:28 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-09-28 02:59:28 +0200 |
| commit | a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53 (patch) | |
| tree | 4681de90248ac2638553a48df80ef5d2f24200d7 /lisp | |
| parent | 806b00cb5f5034343709319bc217059fa382df19 (diff) | |
| download | emacs-a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53.tar.gz emacs-a239d4e9c0e6fe9fab01e24212fb1dbb158c0a53.zip | |
Fix typos.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/ChangeLog.13 | 2 | ||||
| -rw-r--r-- | lisp/net/quickurl.el | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
4 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bdf4522c4f5..4d1f762dd26 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-09-28 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * subr.el (with-output-to-temp-buffer): | ||
| 4 | * net/quickurl.el (quickurl, quickurl-browse-url): | ||
| 5 | Fix typos in docstrings. | ||
| 6 | |||
| 1 | 2011-09-27 Eli Zaretskii <eliz@gnu.org> | 7 | 2011-09-27 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * minibuffer.el (completion-styles) | 9 | * minibuffer.el (completion-styles) |
diff --git a/lisp/ChangeLog.13 b/lisp/ChangeLog.13 index 8cbe1ad5776..993c51163cb 100644 --- a/lisp/ChangeLog.13 +++ b/lisp/ChangeLog.13 | |||
| @@ -1743,7 +1743,7 @@ | |||
| 1743 | auto-composition-function to it. | 1743 | auto-composition-function to it. |
| 1744 | (toggle-auto-composition): New function. | 1744 | (toggle-auto-composition): New function. |
| 1745 | 1745 | ||
| 1746 | * international/characters.el: Make all chararacters in the | 1746 | * international/characters.el: Make all characters in the |
| 1747 | charset tibetan to tibetan script. | 1747 | charset tibetan to tibetan script. |
| 1748 | 1748 | ||
| 1749 | * international/mule-conf.el (tibetan): Fix :code-space property. | 1749 | * international/mule-conf.el (tibetan): Fix :code-space property. |
diff --git a/lisp/net/quickurl.el b/lisp/net/quickurl.el index 712f0b0c924..3f1437f0799 100644 --- a/lisp/net/quickurl.el +++ b/lisp/net/quickurl.el | |||
| @@ -307,7 +307,7 @@ Also display a `message' saying what the URL was unless SILENT is non-nil." | |||
| 307 | "Insert a URL based on LOOKUP. | 307 | "Insert a URL based on LOOKUP. |
| 308 | 308 | ||
| 309 | If not supplied LOOKUP is taken to be the word at point in the current | 309 | If not supplied LOOKUP is taken to be the word at point in the current |
| 310 | buffer, this default action can be modifed via | 310 | buffer, this default action can be modified via |
| 311 | `quickurl-grab-lookup-function'." | 311 | `quickurl-grab-lookup-function'." |
| 312 | (interactive) | 312 | (interactive) |
| 313 | (when (or lookup | 313 | (when (or lookup |
| @@ -402,7 +402,7 @@ is decided." | |||
| 402 | "Browse the URL associated with LOOKUP. | 402 | "Browse the URL associated with LOOKUP. |
| 403 | 403 | ||
| 404 | If not supplied LOOKUP is taken to be the word at point in the | 404 | If not supplied LOOKUP is taken to be the word at point in the |
| 405 | current buffer, this default action can be modifed via | 405 | current buffer, this default action can be modified via |
| 406 | `quickurl-grab-lookup-function'." | 406 | `quickurl-grab-lookup-function'." |
| 407 | (interactive) | 407 | (interactive) |
| 408 | (when (or lookup | 408 | (when (or lookup |
diff --git a/lisp/subr.el b/lisp/subr.el index 1aa714fa883..4946f3eef7a 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -3002,7 +3002,7 @@ Instead it binds `standard-output' to that buffer, so that output | |||
| 3002 | generated with `prin1' and similar functions in BODY goes into | 3002 | generated with `prin1' and similar functions in BODY goes into |
| 3003 | the buffer. | 3003 | the buffer. |
| 3004 | 3004 | ||
| 3005 | At the end of BODY, this marks buffer BUFNAME unmodifed and displays | 3005 | At the end of BODY, this marks buffer BUFNAME unmodified and displays |
| 3006 | it in a window, but does not select it. The normal way to do this is | 3006 | it in a window, but does not select it. The normal way to do this is |
| 3007 | by calling `display-buffer', then running `temp-buffer-show-hook'. | 3007 | by calling `display-buffer', then running `temp-buffer-show-hook'. |
| 3008 | However, if `temp-buffer-show-function' is non-nil, it calls that | 3008 | However, if `temp-buffer-show-function' is non-nil, it calls that |