]> git.eshelyaron.com Git - emacs.git/commitdiff
* dnd.el (dnd-handle-one-url): Fix typo in doc-string.
authorJan Djärv <jan.h.d@swipnet.se>
Wed, 11 Oct 2006 06:27:08 +0000 (06:27 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Wed, 11 Oct 2006 06:27:08 +0000 (06:27 +0000)
* 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

lisp/ChangeLog
lisp/dnd.el
lisp/help-at-pt.el
lisp/longlines.el
lisp/simple.el
lisp/wid-edit.el

index 2b5515349bfefd8853c279f5bd559a9aa9636441..7815c4e0b8cef4efa6797b3d1c2b8daef7aec6f8 100644 (file)
@@ -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
index f8cdf9a123935471cbb692e9a9fdab9e9fdb97b1..1f3c8d712660bfbd6d1bde085448df212ac80be6 100644 (file)
@@ -91,7 +91,7 @@ The handler is first located by looking at `dnd-protocol-alist'.
 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)
index db00fff6c1c40ca064c6c69e9327519ad5bbfc7f..6d33c155c64836415b4b94c87218122529a93aed 100644 (file)
@@ -246,7 +246,7 @@ properties, to enable buffer local values."
 (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.
 
index 77e0b415344961ee8ccadf3d015450ad544854e9..ee469e1be0937c4ecff755bfc5b8024c25c270e9 100644 (file)
@@ -410,7 +410,7 @@ This is called by `post-command-hook' after each command."
 
 (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)))
index 8bd3a30a59b10980e4b2a6392ded4593e6d25182..6655539a6188fb0fbe0db74533027ddc7a8f4b3d 100644 (file)
@@ -1675,7 +1675,7 @@ is not *inside* the region START...END."
 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
index 5d8580ef22c4e185eb43384fd9029e7f5444ccba..af41424ca7565d24fe0004b32547624d4b9ca97d 100644 (file)
@@ -1873,7 +1873,7 @@ If END is omitted, it defaults to the length of LIST."
   "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 @@ The first group should be the link itself."
 
 (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