diff options
| author | Stefan Monnier | 2007-06-13 21:17:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-06-13 21:17:18 +0000 |
| commit | 195eca781ccdeca3756434c28ba996112abda58f (patch) | |
| tree | 9d6197894310aad0996fc6d369b5b8cf0d532f96 /lisp/ChangeLog | |
| parent | 97311ec3a4d914e61a142e5eb790f830ec71018c (diff) | |
| download | emacs-195eca781ccdeca3756434c28ba996112abda58f.tar.gz emacs-195eca781ccdeca3756434c28ba996112abda58f.zip | |
(rcirc-format-response-string): Use rcirc-nick-syntax
around bright and dim regexps. Make sure bright and dim matches
use word anchors. Send text through rcirc-markup functions.
(rcirc-url-regexp): Add single quote character.
(rcirc-connect): Write logs to disk on auto-save-hook.
Make server a non-optional argument.
(rcirc-log-alist): New variable.
(rcirc-log-directory): Make customizable.
(rcirc-log-flag): New customizable variable.
(rcirc-log): New function.
(rcirc-print): Use above function.
(rcirc-log-write): New function.
(rcirc-generate-new-buffer-name): Strip text properties.
(rcirc-switch-to-buffer-function): Remove variable.
(rcirc-last-non-irc-buffer): Remove variable.
(rcirc-non-irc-buffer): Add function.
(rcirc-next-active-buffer): Use above function.
(rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING.
(rcirc-handler-ctcp-KEEPALIVE): Add handler.
(rcirc-handler-CTCP): Don't print KEEPALIVE responses.
(rcirc-omit-mode): Add minor-mode.
(rcirc-mode-map): Change C-c C-o binding.
(rcirc-mode): Clear mode-line-process. Use a custom
fill-paragraph-function. Set up buffer-invisibility-spec.
(rcirc-response-formats): Remove timestamp code.
(rcirc-omit-responses): Add variable.
(rcirc-print): Don't put the overlay arrow on potentially omitted
lines. Log line to disk. Record activity for private messages
from /dim nicks. Facify the fill-prefix with rcirc-timestamp face.
(rcirc-jump-to-first-unread-line): Print message if there is no
unread text.
(rcirc-clear-unread): New function.
(rcirc-markup-text-functions): Add variable.
(rcirc-markup-timestamp, rcirc-markup-fill): Add functions.
(rcirc-debug): Don't mess with window configuration.
(rcirc-send-message): Send message before printing locally.
Add SILENT argument, do not print message if non-nil.
(rcirc-visible-buffers): New function and variable.
(rcirc-window-configuration-change-1): Add function.
(rcirc-target-buffer): Make sure ACTIONs don't get sent to the
server buffer.
(rcirc-clean-up-buffer): Set rcirc-target to nil when finished.
(rcirc-fill-paragraph): Add function.
(rcirc-record-activity, rcirc-window-configuration-change-1):
Only update the activity string if it has actually changed.
(rcirc-update-activity-string): Remove padding characters from the
mode-line string.
(rcirc-disconnect-buffer): New function to be called when a
channel is parted or the user quits.
(rcirc-server-name): Warn when the server-name hasn't been set.
(rcirc-window-configuration-change): Postpone work until
post-command-hook.
(rcirc-window-configuration-change-1): Update mode-line and
overlay arrows here.
(rcirc-authenticate): Fix chanserv identification.
(rcirc-default-server): Remove variable.
(rcirc): Connect according to rcirc-connections.
(rcirc-connections): Add variable.
(rcirc-startup-channels-alist): Remove variable.
(rcirc-startup-channels): Remove function.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 602ff2d7838..ee072eca720 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,66 @@ | |||
| 1 | 2007-06-13 Ryan Yeske <rcyeske@gmail.com> | ||
| 2 | |||
| 3 | * rcirc.el (rcirc-format-response-string): Use rcirc-nick-syntax | ||
| 4 | around bright and dim regexps. Make sure bright and dim matches | ||
| 5 | use word anchors. Send text through rcirc-markup functions. | ||
| 6 | (rcirc-url-regexp): Add single quote character. | ||
| 7 | (rcirc-connect): Write logs to disk on auto-save-hook. | ||
| 8 | Make server a non-optional argument. | ||
| 9 | (rcirc-log-alist): New variable. | ||
| 10 | (rcirc-log-directory): Make customizable. | ||
| 11 | (rcirc-log-flag): New customizable variable. | ||
| 12 | (rcirc-log): New function. | ||
| 13 | (rcirc-print): Use above function. | ||
| 14 | (rcirc-log-write): New function. | ||
| 15 | (rcirc-generate-new-buffer-name): Strip text properties. | ||
| 16 | (rcirc-switch-to-buffer-function): Remove variable. | ||
| 17 | (rcirc-last-non-irc-buffer): Remove variable. | ||
| 18 | (rcirc-non-irc-buffer): Add function. | ||
| 19 | (rcirc-next-active-buffer): Use above function. | ||
| 20 | (rcirc-keepalive): Send KEEPALIVE ctcp instead of a PING. | ||
| 21 | (rcirc-handler-ctcp-KEEPALIVE): Add handler. | ||
| 22 | (rcirc-handler-CTCP): Don't print KEEPALIVE responses. | ||
| 23 | (rcirc-omit-mode): Add minor-mode. | ||
| 24 | (rcirc-mode-map): Change C-c C-o binding. | ||
| 25 | (rcirc-mode): Clear mode-line-process. Use a custom | ||
| 26 | fill-paragraph-function. Set up buffer-invisibility-spec. | ||
| 27 | (rcirc-response-formats): Remove timestamp code. | ||
| 28 | (rcirc-omit-responses): Add variable. | ||
| 29 | (rcirc-print): Don't put the overlay arrow on potentially omitted | ||
| 30 | lines. Log line to disk. Record activity for private messages | ||
| 31 | from /dim nicks. Facify the fill-prefix with rcirc-timestamp face. | ||
| 32 | (rcirc-jump-to-first-unread-line): Print message if there is no | ||
| 33 | unread text. | ||
| 34 | (rcirc-clear-unread): New function. | ||
| 35 | (rcirc-markup-text-functions): Add variable. | ||
| 36 | (rcirc-markup-timestamp, rcirc-markup-fill): Add functions. | ||
| 37 | (rcirc-debug): Don't mess with window configuration. | ||
| 38 | (rcirc-send-message): Send message before printing locally. | ||
| 39 | Add SILENT argument, do not print message if non-nil. | ||
| 40 | (rcirc-visible-buffers): New function and variable. | ||
| 41 | (rcirc-window-configuration-change-1): Add function. | ||
| 42 | (rcirc-target-buffer): Make sure ACTIONs don't get sent to the | ||
| 43 | server buffer. | ||
| 44 | (rcirc-clean-up-buffer): Set rcirc-target to nil when finished. | ||
| 45 | (rcirc-fill-paragraph): Add function. | ||
| 46 | (rcirc-record-activity, rcirc-window-configuration-change-1): | ||
| 47 | Only update the activity string if it has actually changed. | ||
| 48 | (rcirc-update-activity-string): Remove padding characters from the | ||
| 49 | mode-line string. | ||
| 50 | (rcirc-disconnect-buffer): New function to be called when a | ||
| 51 | channel is parted or the user quits. | ||
| 52 | (rcirc-server-name): Warn when the server-name hasn't been set. | ||
| 53 | (rcirc-window-configuration-change): Postpone work until | ||
| 54 | post-command-hook. | ||
| 55 | (rcirc-window-configuration-change-1): Update mode-line and | ||
| 56 | overlay arrows here. | ||
| 57 | (rcirc-authenticate): Fix chanserv identification. | ||
| 58 | (rcirc-default-server): Remove variable. | ||
| 59 | (rcirc): Connect according to rcirc-connections. | ||
| 60 | (rcirc-connections): Add variable. | ||
| 61 | (rcirc-startup-channels-alist): Remove variable. | ||
| 62 | (rcirc-startup-channels): Remove function. | ||
| 63 | |||
| 1 | 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca> | 64 | 2007-06-13 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 65 | ||
| 3 | * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change. | 66 | * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change. |