aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorEli Zaretskii2006-02-08 17:39:10 +0000
committerEli Zaretskii2006-02-08 17:39:10 +0000
commitdb58efbf51c969dea052cb259ee0a01078e4db68 (patch)
tree0e22ca007bae13c9386668c75d3276cf6b4c42aa /lisp/ChangeLog
parent063cd226b900cfcfcc98fd1d12ad1c0ad535f0c5 (diff)
downloademacs-db58efbf51c969dea052cb259ee0a01078e4db68.tar.gz
emacs-db58efbf51c969dea052cb259ee0a01078e4db68.zip
(rcirc-startup-channels-alist): Add irc.freenode.net and #emacs as defaults.
(rcirc-ignore-all-activity-flag): Remove variable. (rcirc-authinfo): New variable. (rcirc-authinfo-filename): Remove variable. (rcirc-always-use-server-buffer-flag): New flag. (rcirc): M-x rcirc will automatically connect without prompting. C-u M-x rcirc will prompt. Use rcirc-connect to create a connection in lisp. (rcirc-process-server-response-1): Remove everything but the nick portion of the sender so it doesn't need to be done everywhere else. Update related code. (global-map): Remove global keybindings. (rcirc-get-buffer-create): Make sure rcirc-topic is set. (rcirc-send-input): Split into several functions. (rcirc-process-input-line, rcirc-process-message, rcirc-process-command): New functions. (rcirc-target-buffer): Add function to determine where to route messages. (rcirc-user-nick): Save match data. (rcirc-toggle-ignore-buffer-activity) (rcirc-update-activity-string): Remove global ignore functionality, which can be done now by toggling rcirc-track-minor-mode. (rcirc-track-minor-mode-map): New keymap. (rcirc-track-minor-mode): New minor-mode. (ignore): Make the ignore output nicer. Always print it when adding or removing nicks. (rcirc-url-regexp): Improve. (rcirc-mangle-text): Remove properties before using text in the modeline. (rcirc-authenticate): Authentication data comes from rcirc-authinfo, not the file pointed to by rcirc-authinfo-file. (rcirc-server-prefix): Inherit from rcirc-server.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog37
1 files changed, 37 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2dabb698218..c03d0171f06 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,40 @@
12006-02-08 Ryan Yeske <rcyeske@gmail.com>
2
3 * net/rcirc.el (rcirc-startup-channels-alist): Add
4 irc.freenode.net and #emacs as defaults.
5 (rcirc-ignore-all-activity-flag): Remove variable.
6 (rcirc-authinfo): New variable.
7 (rcirc-authinfo-filename): Remove variable.
8 (rcirc-always-use-server-buffer-flag): New flag.
9 (rcirc): M-x rcirc will automatically connect without prompting.
10 C-u M-x rcirc will prompt. Use rcirc-connect to create a
11 connection in lisp.
12 (rcirc-process-server-response-1): Remove everything but the nick
13 portion of the sender so it doesn't need to be done everywhere
14 else. Update related code.
15 (global-map): Remove global keybindings.
16 (rcirc-get-buffer-create): Make sure rcirc-topic is set.
17 (rcirc-send-input): Split into several functions.
18 (rcirc-process-input-line, rcirc-process-message)
19 (rcirc-process-command): New functions.
20 (rcirc-target-buffer): New function to determine where to route
21 messages.
22 (rcirc-user-nick): Save match data.
23 (rcirc-toggle-ignore-buffer-activity)
24 (rcirc-update-activity-string): Remove global ignore
25 functionality, which can be done now by toggling
26 rcirc-track-minor-mode.
27 (rcirc-track-minor-mode-map): New keymap.
28 (rcirc-track-minor-mode): New minor-mode.
29 (ignore): Make the ignore output nicer. Always print it when
30 adding or removing nicks.
31 (rcirc-url-regexp): Improve.
32 (rcirc-mangle-text): Remove properties before using text in the
33 modeline.
34 (rcirc-authenticate): Authentication data comes from
35 rcirc-authinfo, not the file pointed to by rcirc-authinfo-file.
36 (rcirc-server-prefix): Inherit from rcirc-server.
37
12006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change) 382006-02-08 Mathias Megyei <Mathias.Megyei@micronas.com> (tiny change)
2 39
3 * Makefile.in (compile): Append "|| true" to the end of the `find' 40 * Makefile.in (compile): Append "|| true" to the end of the `find'