diff options
| author | Jan Djärv | 2006-10-11 06:27:08 +0000 |
|---|---|---|
| committer | Jan Djärv | 2006-10-11 06:27:08 +0000 |
| commit | a3545af4a82be7b032738a2d0cc7e5e7f3ac78f0 (patch) | |
| tree | fe5dcd4ddfdc8665ab5a4607a1ac90b89f22df16 | |
| parent | 90e4b32d3a45b460f8155389ceb857c9473a0793 (diff) | |
| download | emacs-a3545af4a82be7b032738a2d0cc7e5e7f3ac78f0.tar.gz emacs-a3545af4a82be7b032738a2d0cc7e5e7f3ac78f0.zip | |
* dnd.el (dnd-handle-one-url): Fix typo in doc-string.
* help-at-pt.el (scan-buf-move-to-region): Likewise.
* longlines.el (longlines-window-change-function): Likewise.
* simple.el (undo-ask-before-discard): Likewise.
* wid-edit.el (widget-field-prompt-internal)
(widget-documentation-link-p): Likewise
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/dnd.el | 2 | ||||
| -rw-r--r-- | lisp/help-at-pt.el | 2 | ||||
| -rw-r--r-- | lisp/longlines.el | 2 | ||||
| -rw-r--r-- | lisp/simple.el | 2 | ||||
| -rw-r--r-- | lisp/wid-edit.el | 4 |
6 files changed, 15 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2b5515349bf..7815c4e0b8c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2006-10-11 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * dnd.el (dnd-handle-one-url): Fix typo in doc-string. | ||
| 4 | * help-at-pt.el (scan-buf-move-to-region): Likewise. | ||
| 5 | * longlines.el (longlines-window-change-function): Likewise. | ||
| 6 | * simple.el (undo-ask-before-discard): Likewise. | ||
| 7 | * wid-edit.el (widget-field-prompt-internal) | ||
| 8 | (widget-documentation-link-p): Likewise | ||
| 9 | |||
| 1 | 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca> | 10 | 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 11 | ||
| 3 | * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars | 12 | * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars |
diff --git a/lisp/dnd.el b/lisp/dnd.el index f8cdf9a1239..1f3c8d71266 100644 --- a/lisp/dnd.el +++ b/lisp/dnd.el | |||
| @@ -91,7 +91,7 @@ The handler is first located by looking at `dnd-protocol-alist'. | |||
| 91 | If no match is found here, and the value of `browse-url-browser-function' | 91 | If no match is found here, and the value of `browse-url-browser-function' |
| 92 | is a pair of (REGEXP . FUNCTION), those regexps are tried for a match. | 92 | is a pair of (REGEXP . FUNCTION), those regexps are tried for a match. |
| 93 | If no match is found, just call `dnd-insert-text'. | 93 | If no match is found, just call `dnd-insert-text'. |
| 94 | WINDOW is where the drop happend, ACTION is the action for the drop, | 94 | WINDOW is where the drop happened, ACTION is the action for the drop, |
| 95 | URL is what has been dropped. | 95 | URL is what has been dropped. |
| 96 | Returns ACTION." | 96 | Returns ACTION." |
| 97 | (require 'browse-url) | 97 | (require 'browse-url) |
diff --git a/lisp/help-at-pt.el b/lisp/help-at-pt.el index db00fff6c1c..6d33c155c64 100644 --- a/lisp/help-at-pt.el +++ b/lisp/help-at-pt.el | |||
| @@ -246,7 +246,7 @@ properties, to enable buffer local values." | |||
| 246 | (defun scan-buf-move-to-region (prop &optional arg hook) | 246 | (defun scan-buf-move-to-region (prop &optional arg hook) |
| 247 | "Go to the start of the next region with non-nil PROP property. | 247 | "Go to the start of the next region with non-nil PROP property. |
| 248 | Then run HOOK, which should be a quoted symbol that is a normal | 248 | Then run HOOK, which should be a quoted symbol that is a normal |
| 249 | hook.variable, or an expression evaluating to such a symbol. | 249 | hook variable, or an expression evaluating to such a symbol. |
| 250 | Adjacent areas with different non-nil PROP properties are | 250 | Adjacent areas with different non-nil PROP properties are |
| 251 | considered different regions. | 251 | considered different regions. |
| 252 | 252 | ||
diff --git a/lisp/longlines.el b/lisp/longlines.el index 77e0b415344..ee469e1be09 100644 --- a/lisp/longlines.el +++ b/lisp/longlines.el | |||
| @@ -410,7 +410,7 @@ This is called by `post-command-hook' after each command." | |||
| 410 | 410 | ||
| 411 | (defun longlines-window-change-function () | 411 | (defun longlines-window-change-function () |
| 412 | "Re-wrap the buffer if the window width has changed. | 412 | "Re-wrap the buffer if the window width has changed. |
| 413 | This is called by `window-size-change-functions'." | 413 | This is called by `window-configuration-change-hook'." |
| 414 | (when (/= fill-column (- (window-width) window-min-width)) | 414 | (when (/= fill-column (- (window-width) window-min-width)) |
| 415 | (setq fill-column (- (window-width) window-min-width)) | 415 | (setq fill-column (- (window-width) window-min-width)) |
| 416 | (let ((mod (buffer-modified-p))) | 416 | (let ((mod (buffer-modified-p))) |
diff --git a/lisp/simple.el b/lisp/simple.el index 8bd3a30a59b..6655539a618 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -1675,7 +1675,7 @@ is not *inside* the region START...END." | |||
| 1675 | Normally, Emacs discards the undo info for the current command if | 1675 | Normally, Emacs discards the undo info for the current command if |
| 1676 | it exceeds `undo-outer-limit'. But if you set this option | 1676 | it exceeds `undo-outer-limit'. But if you set this option |
| 1677 | non-nil, it asks in the echo area whether to discard the info. | 1677 | non-nil, it asks in the echo area whether to discard the info. |
| 1678 | If you answer no, there a slight risk that Emacs might crash, so | 1678 | If you answer no, there is a slight risk that Emacs might crash, so |
| 1679 | only do it if you really want to undo the command. | 1679 | only do it if you really want to undo the command. |
| 1680 | 1680 | ||
| 1681 | This option is mainly intended for debugging. You have to be | 1681 | This option is mainly intended for debugging. You have to be |
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 5d8580ef22c..af41424ca75 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el | |||
| @@ -1873,7 +1873,7 @@ If END is omitted, it defaults to the length of LIST." | |||
| 1873 | "History of field minibuffer edits.") | 1873 | "History of field minibuffer edits.") |
| 1874 | 1874 | ||
| 1875 | (defun widget-field-prompt-internal (widget prompt initial history) | 1875 | (defun widget-field-prompt-internal (widget prompt initial history) |
| 1876 | "Read string for WIDGET promptinhg with PROMPT. | 1876 | "Read string for WIDGET prompting with PROMPT. |
| 1877 | INITIAL is the initial input and HISTORY is a symbol containing | 1877 | INITIAL is the initial input and HISTORY is a symbol containing |
| 1878 | the earlier input." | 1878 | the earlier input." |
| 1879 | (read-string prompt initial history)) | 1879 | (read-string prompt initial history)) |
| @@ -2864,7 +2864,7 @@ The first group should be the link itself." | |||
| 2864 | 2864 | ||
| 2865 | (defcustom widget-documentation-link-p 'intern-soft | 2865 | (defcustom widget-documentation-link-p 'intern-soft |
| 2866 | "Predicate used to test if a string is useful as a link. | 2866 | "Predicate used to test if a string is useful as a link. |
| 2867 | The value should be a function. The function will be called one | 2867 | The value should be a function. The function will be called with one |
| 2868 | argument, a string, and should return non-nil if there should be a | 2868 | argument, a string, and should return non-nil if there should be a |
| 2869 | link for that string." | 2869 | link for that string." |
| 2870 | :type 'function | 2870 | :type 'function |