diff options
Diffstat (limited to 'lisp/erc')
-rw-r--r-- | lisp/erc/ChangeLog.02 | 8 | ||||
-rw-r--r-- | lisp/erc/ChangeLog.03 | 16 | ||||
-rw-r--r-- | lisp/erc/erc-backend.el | 2 |
3 files changed, 13 insertions, 13 deletions
diff --git a/lisp/erc/ChangeLog.02 b/lisp/erc/ChangeLog.02 index 3364af531f5..d20b6ca35a7 100644 --- a/lisp/erc/ChangeLog.02 +++ b/lisp/erc/ChangeLog.02 @@ -75,7 +75,7 @@ everything but the last character. * erc.el(erc-send-current-line): - Check wether point is in the input line. If + Check whether point is in the input line. If not, just beep and do nothing. 2002-12-28 Alex Schroeder <alex@gnu.org> @@ -98,7 +98,7 @@ 2002-12-28 Jorgen Schaefer <forcer@users.sourceforge.net> * erc.el(erc-log-irc-protocol): - Removed check wether get-buffer-create + Removed check whether get-buffer-create returned nil. "The value is never nil", says the docstring. * erc.el: Day Of The Small Changes @@ -245,7 +245,7 @@ (erc-process-alive): Check erc-process for boundp and processp. * erc.el(erc-kill-buffer-function): - Do not check wether the process is + Do not check whether the process is alive before running the hook, because there might be functions on the hook that need to run even when the process is dead. And function that wants to check this, should use (erc-process-alive). @@ -1037,7 +1037,7 @@ * (erc-away-p): new function erc-fill.el: - * (erc-fill-variable): Check wether erc-timestamp-format is bound before + * (erc-fill-variable): Check whether erc-timestamp-format is bound before using it (erc-fill.el does not require erc-stamp). 2002-11-10 Alex Schroeder <alex@gnu.org> diff --git a/lisp/erc/ChangeLog.03 b/lisp/erc/ChangeLog.03 index fc7fd09e76c..3e687202d38 100644 --- a/lisp/erc/ChangeLog.03 +++ b/lisp/erc/ChangeLog.03 @@ -416,7 +416,7 @@ * erc-button.el: New variable erc-button-wrap-long-urls. Modified erc-button-add-buttons: New optional argument REGEXP. - If we're buttonising a URL and erc-button-wrap-long-urls is + If we're buttonizing a URL and erc-button-wrap-long-urls is non-nil, try and wrap them Modified erc-button-add-buttons-1: @@ -693,10 +693,10 @@ 2003-04-29 Jorgen Schaefer <forcer@users.sourceforge.net> * erc.el(erc): - Check wether erc-save-buffer-in-logs is bound, too + Check whether erc-save-buffer-in-logs is bound, too * erc.el(erc): - Check wether erc-logging-enabled is bound before using it - not + Check whether erc-logging-enabled is bound before using it - not everyone is using erc-log.el! 2003-04-28 Andreas Fuchs <asf@void.at> @@ -822,7 +822,7 @@ (define-erc-module): the enable and disable routines now update erc-modules accordingly erc-modules: new variable controlling the modules which erc has loaded/will - load. when customising, it will automatically enable modules. it won't + load. when customizing, it will automatically enable modules. it won't automatically disable modules which are removed, yet. (erc-update-modules): enable all modules in `erc-modules' @@ -1058,7 +1058,7 @@ * erc.el(erc-process-input-line): when displaying the help for a function, if no documentation exists, don't fall over - (erc-cmd-SAY): new function for quoting lines begining with / + (erc-cmd-SAY): new function for quoting lines beginning with / (erc-server-NICK): - fix a bug where the "is now known as" message doesn't appear on newly created /query buffers @@ -1166,7 +1166,7 @@ (erc-person): Call erc-downcase before getting something from the hash. - (erc-nick-in-channel): Checking wether erc-process must be used is + (erc-nick-in-channel): Checking whether erc-process must be used is unnecessary -- this will be done in erc-person. (erc-nick-channels): New. (erc-add-nick-to-channel, erc-update-member): Call erc-downcase @@ -1491,7 +1491,7 @@ * erc.el: * removed duplicate do-no-parse-args properties for the defaliased defuns (erc-process-input-line): show function signature when incorrect args - (erc-extract-command-from-line): canonicalise defaliases before extracting + (erc-extract-command-from-line): canonicalize defaliases before extracting plist (erc-cmd-CLEAR): fixed (erc-cmd-UNIGNORE): fixed again @@ -1678,7 +1678,7 @@ 2003-01-11 Jorgen Schaefer <forcer@users.sourceforge.net> * erc-stamp.el(erc-insert-timestamp-right): - Check wether erc-fill-column is + Check whether erc-fill-column is available before using it. Else default to fill-column or if everything else fails, the window width of the current window. For the fill-columns, use them directly as the starting position for the diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el index 5baa676ab39..112091af219 100644 --- a/lisp/erc/erc-backend.el +++ b/lisp/erc/erc-backend.el @@ -991,7 +991,7 @@ Hands off to helper functions via `erc-call-hooks'." (if (member (erc-response.command parsed-response) erc-server-prevent-duplicates) (let ((m (erc-response.unparsed parsed-response))) - ;; duplicate supression + ;; duplicate suppression (if (< (or (gethash m erc-server-duplicates) 0) (- (erc-current-time) erc-server-duplicate-timeout)) (erc-call-hooks process parsed-response)) |