Mercurial > emacs
changeset 73330:400487787181
* 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
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Wed, 11 Oct 2006 06:27:08 +0000 |
parents | e93dcbb04c0d |
children | f21883dcffa9 |
files | lisp/ChangeLog lisp/dnd.el lisp/help-at-pt.el lisp/longlines.el lisp/simple.el lisp/wid-edit.el |
diffstat | 6 files changed, 15 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Oct 10 22:39:52 2006 +0000 +++ b/lisp/ChangeLog Wed Oct 11 06:27:08 2006 +0000 @@ -1,3 +1,12 @@ +2006-10-11 Martin Rudalics <rudalics@gmx.at> + + * 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 + 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca> * progmodes/sh-script.el (sh-get-kw): | is not among the allowed chars
--- a/lisp/dnd.el Tue Oct 10 22:39:52 2006 +0000 +++ b/lisp/dnd.el Wed Oct 11 06:27:08 2006 +0000 @@ -91,7 +91,7 @@ If no match is found here, and the value of `browse-url-browser-function' is a pair of (REGEXP . FUNCTION), those regexps are tried for a match. If no match is found, just call `dnd-insert-text'. -WINDOW is where the drop happend, ACTION is the action for the drop, +WINDOW is where the drop happened, ACTION is the action for the drop, URL is what has been dropped. Returns ACTION." (require 'browse-url)
--- a/lisp/help-at-pt.el Tue Oct 10 22:39:52 2006 +0000 +++ b/lisp/help-at-pt.el Wed Oct 11 06:27:08 2006 +0000 @@ -246,7 +246,7 @@ (defun scan-buf-move-to-region (prop &optional arg hook) "Go to the start of the next region with non-nil PROP property. Then run HOOK, which should be a quoted symbol that is a normal -hook.variable, or an expression evaluating to such a symbol. +hook variable, or an expression evaluating to such a symbol. Adjacent areas with different non-nil PROP properties are considered different regions.
--- a/lisp/longlines.el Tue Oct 10 22:39:52 2006 +0000 +++ b/lisp/longlines.el Wed Oct 11 06:27:08 2006 +0000 @@ -410,7 +410,7 @@ (defun longlines-window-change-function () "Re-wrap the buffer if the window width has changed. -This is called by `window-size-change-functions'." +This is called by `window-configuration-change-hook'." (when (/= fill-column (- (window-width) window-min-width)) (setq fill-column (- (window-width) window-min-width)) (let ((mod (buffer-modified-p)))
--- a/lisp/simple.el Tue Oct 10 22:39:52 2006 +0000 +++ b/lisp/simple.el Wed Oct 11 06:27:08 2006 +0000 @@ -1675,7 +1675,7 @@ Normally, Emacs discards the undo info for the current command if it exceeds `undo-outer-limit'. But if you set this option non-nil, it asks in the echo area whether to discard the info. -If you answer no, there a slight risk that Emacs might crash, so +If you answer no, there is a slight risk that Emacs might crash, so only do it if you really want to undo the command. This option is mainly intended for debugging. You have to be
--- a/lisp/wid-edit.el Tue Oct 10 22:39:52 2006 +0000 +++ b/lisp/wid-edit.el Wed Oct 11 06:27:08 2006 +0000 @@ -1873,7 +1873,7 @@ "History of field minibuffer edits.") (defun widget-field-prompt-internal (widget prompt initial history) - "Read string for WIDGET promptinhg with PROMPT. + "Read string for WIDGET prompting with PROMPT. INITIAL is the initial input and HISTORY is a symbol containing the earlier input." (read-string prompt initial history)) @@ -2864,7 +2864,7 @@ (defcustom widget-documentation-link-p 'intern-soft "Predicate used to test if a string is useful as a link. -The value should be a function. The function will be called one +The value should be a function. The function will be called with one argument, a string, and should return non-nil if there should be a link for that string." :type 'function