annotate lisp/erc/ChangeLog.08 @ 112379:b14f98859016

Merge: build from gnulib a bit better; document autoreconf.
author Paul Eggert <eggert@cs.ucla.edu>
date Wed, 19 Jan 2011 15:59:52 -0800
parents ef719132ddfa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
101278
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
1 2008-11-19 Andy Stewart <lazycat.manatee@gmail.com>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
2
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
3 * erc.el (erc-header-line-uses-tabbar-p): New option that makes
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
4 tabbar mode usable with ERC if set to non-nil.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
5 (erc-update-mode-line-buffer): Use it.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
6
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
7 2008-11-19 Glenn Morris <rgm@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
8
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
9 * erc-compat.el (help-function-arglist): Autoload it.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
10
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
11 2008-10-03 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
12
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
13 * erc-dcc.el (english): Increase size heading by two places.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
14 (erc-dcc-byte-count): Move higher.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
15 (erc-dcc-do-LIST-command): Use erc-dcc-byte-count to get accurate
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
16 count. Coerce byte total to floating point before performing
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
17 computation, otherwise division will truncate to 0.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
18 (erc-dcc-append-contents): Update erc-dcc-byte-count.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
19 (erc-dcc-get-filter): Don't update erc-dcc-byte-count, because
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
20 that will give incorrect size totals. Instead, figure out how
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
21 much we have by summing byte count and current buffer size.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
22 (erc-dcc-get-sentinel): Don't update erc-dcc-byte-count.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
23
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
24 2008-10-01 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
25
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
26 * erc-dcc.el (erc-pack-int): Make sure returned string is within 4
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
27 bytes. Always return a 4-byte string, so that we conform to the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
28 CTCP spec.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
29 (erc-most-positive-int-bytes): New constant representing the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
30 number of bytes that most-positive-fixnum can be stored in.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
31 (erc-most-positive-int-msb): New constant representing the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
32 contents of the most significant byte of most-positive-fixnum.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
33 (erc-unpack-int): Make sure that the integer we get back can be
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
34 represented in Emacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
35 (erc-dcc-do-CLOSE-command): Update docstring. Don't use the line
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
36 variable. Try to disambiguate between type and nick when only one
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
37 is provided. Validate both type and nick arguments. Allow
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
38 matching by just nick.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
39 (erc-dcc-append-contents): Set inhibit-read-only to t. Prevent
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
40 auto-compression from triggering when we write the contents to a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
41 file.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
42 (erc-dcc-get-file): Prevent auto-compression from triggering when
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
43 we truncate a file.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
44
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
45 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
46
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
47 * erc.el: Remove code for Carbon.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
48
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
49 2008-06-07 Glenn Morris <rgm@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
50
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
51 * erc/erc-autoaway.el, erc/erc-ibuffer.el, erc/erc-menu.el:
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
52 * erc/erc-stamp.el, erc/erc.el: Remove unnecessary eval-when-compiles.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
53
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
54 2008-05-30 Diane Murray <disumu@x3y2z1.net>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
55
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
56 * erc-backend.el (328): New response handler.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
57
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
58 * erc.el (english): Add 328 to catalog.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
59
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
60 2008-05-29 Diane Murray <disumu@x3y2z1.net>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
61
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
62 * erc-services.el (erc-nickserv-alist): Update REGEXP and
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
63 SUCCESS-REGEXP for freenode.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
64
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
65 2008-05-05 Juanma Barranquero <lekktu@gmail.com>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
66
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
67 * erc-goodies.el (erc-noncommands-list, noncommands)
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
68 (erc-control-characters, erc-interpret-controls-p)
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
69 (erc-interpret-mirc-color): Fix typos in docstrings.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
70 (erc-controls-highlight): Reflow docstring.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
71
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
72 2008-04-26 Johan Bockgård <bojohan@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
73
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
74 * erc.el (erc-put-text-properties): Don't use mapcar*.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
75 (erc-display-line-1): Fix argument order in call to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
76 erc-put-text-properties.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
77
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
78 2008-04-14 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
79
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
80 * erc.el (erc-remove-text-properties-region): Disable this command
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
81 by default. Thanks to e1f for the suggestion.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
82
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
83 2008-02-20 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
84
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
85 * erc.el (erc-notice-face): Fix this face for Emacs 21 users.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
86
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
87 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
88
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
89 * erc.el (erc-valid-nick-regexp):
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
90 * erc-button.el (erc-button-syntax-table):
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
91 * erc-match.el (erc-match-syntax-table): Replace `legal' with `valid'.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
92
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
93 2008-02-04 Jeremy Maitin-Shepard <jbms@cmu.edu>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
94
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
95 * erc.el (erc-cmd-QUERY): Bind the value of `erc-auto-query' to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
96 `erc-query-display' rather than `erc-join-buffer'. This fixes a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
97 bug where the value of erc-auto-query was being ignored.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
98
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
99 2008-01-31 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
100
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
101 * erc-dcc.el (erc-dcc-do-GET-command, erc-dcc-do-SEND-command):
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
102 Improve docstring. If FILE argument is split into multiple
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
103 arguments, re-join them into a single string, separated by a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
104 space. This fixes an issue where the user wants to send or
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
105 receive a file with spaces in its name. It is assumed that no one
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
106 will try sending or receiving a file with multiple consecutive
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
107 spaces in its name, otherwise this fix will fail.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
108
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
109 * erc.el (erc-mode-map): Add binding for C-c C-x to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
110 erc-quit-server, since rcirc.el binds its quit command in a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
111 similar manner. Thanks to Jari Aalto for the suggestion.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
112
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
113 2008-01-28 Diane Murray <disumu@x3y2z1.net>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
114
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
115 * erc-list-old.el (list-old): Define module as list-old, not list.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
116 This fixes a bug where an unknown module error would occur when
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
117 starting ERC and using the list-old module.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
118
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
119 * erc-track.el (erc-track-find-face): If no choice was found
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
120 return nil to use the default mode-line faces.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
121
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
122 2008-01-26 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
123
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
124 * erc.el (erc-version-string): Release ERC 5.3.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
125
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
126 * Makefile (VERSION): Update.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
127 (EXTRAS): Remove erc-list.el after all, because this is mainly for
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
128 users of the version that comes with Emacs, and they will have
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
129 erc-list.el by Emacs 23.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
130 (MISC): Add ChangeLog.07.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
131 (elpa): Fix build issue. Add proper version to erc-pkg.el.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
132
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
133 * README.extras: Mention Emacs 23.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
134
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
135 * erc-pkg.el: Make the version string a template.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
136
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
137 * erc.texi (Obtaining ERC): Update extras URLs for 5.3.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
138 (Development): Write instructions for git, and remove those for Arch.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
139 (History): Mention the switch to git.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
140
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
141 2008-01-25 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
142
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
143 * NEWS: Update.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
144
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
145 * erc-goodies.el (keep-place): New module which keeps your place
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
146 in unvisited ERC buffers when new messages arrive. This is mostly
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
147 taken from Johan Bockgård's init file.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
148 (erc-noncommands-list): Move to correct place.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
149
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
150 * erc-networks.el: Add a module definition.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
151
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
152 * erc-services.el (erc-nickserv-identify-mode): Force-enable the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
153 networks module, because we need it to set erc-network for us.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
154
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
155 * erc-track.el (erc-track-faces-normal-list): Indicate in the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
156 docstring that this variable can be set to nil.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
157
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
158 * erc.el: On second thought, don't load erc-networks. Just enable
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
159 the networks module by default.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
160 (erc-modules): Add option for keep-place and networks. Enable
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
161 networks by default.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
162 (erc-version-string): Make release candidate 1 available.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
163
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
164 2008-01-24 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
165
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
166 * erc.el: Load erc-networks.el so that functions get access to the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
167 `erc-network-name' function.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
168
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
169 * erc-track.el (erc-track-faces-normal-list): Add
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
170 erc-dangerous-host-face.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
171 (erc-track-exclude-types): Add 333 and 353 to the default list of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
172 things to ignore, and explain what they are in the docstring.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
173
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
174 2008-01-23 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
175
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
176 * erc-track.el (erc-track-faces-priority-list): Move
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
177 erc-nick-default-face higher, so that it can be used for the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
178 activity indication effect. Add erc-current-nick-face,
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
179 erc-pal-face, erc-dangerous-host-face, and erc-fool-face by
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
180 themselves.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
181 (erc-track-faces-normal-list): New option that contains a list of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
182 faces to consider "normal".
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
183 (erc-track-position-in-mode-line): Minor docfix.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
184 (erc-track-find-face): Use erc-track-faces-normal-list to produce
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
185 a sort of blinking activity effect.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
186
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
187 2008-01-22 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
188
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
189 * erc-button.el (erc-button-add-nickname-buttons): When in a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
190 channel buffer, only look at nicks from the current channel.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
191 Thanks to e1f for the report.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
192
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
193 2008-01-21 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
194
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
195 * erc-compat.el (erc-const-expr-p, erc-list*, erc-assert): Remove,
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
196 since we can use the default `assert' function without it causing
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
197 us any problems, even in Emacs 21. Thanks to bojohan for the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
198 suggestion.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
199
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
200 * erc-goodies.el (move-to-prompt): Use the "XEmacs" method
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
201 instead, because the [remap ...] method interferes with
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
202 delete-selection-mode.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
203 (erc-move-to-prompt): Rename from erc-move-to-prompt-xemacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
204 Deactivate mark and call push-mark before moving point. Thanks to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
205 bojohan for the suggestion.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
206 (erc-move-to-prompt-setup): Rename from
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
207 erc-move-to-prompt-init-xemacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
208
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
209 * erc-track.el (erc-track-faces-priority-list): Replace erc-button
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
210 with '(erc-button erc-default-face) so that we only care about
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
211 buttons that are part of normal text. Adjust customization type
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
212 to handle this case. Make erc-nick-default-face a list. Handle
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
213 pals, fools, current nick, and dangerous hosts.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
214 (erc-track-find-face): Simplify. Adapt for list of faces case.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
215 (erc-faces-in): Don't deflate lists of faces. Add them as-is.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
216 (erc-track-face-priority): Use equal instead of eq.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
217
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
218 2008-01-20 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
219
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
220 * erc-goodies.el (erc-move-to-prompt, erc-move-to-prompt-xemacs):
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
221 Fix off-by-one error that caused the point to move when placed at
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
222 the beginning of some already-typed text. Thanks to e1f for the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
223 report.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
224
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
225 * erc-dcc.el, erc-xdcc.el: Add simple module definitions.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
226
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
227 * erc.el (erc-modules): Add dcc and xdcc.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
228
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
229 2008-01-19 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
230
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
231 * erc-bbdb.el (erc-bbdb-insinuate-and-show-entry): Work around bug
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
232 in XEmacs 21.4 that throws an error when the first argument to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
233 run-at-time is nil.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
234
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
235 * erc-button.el (button): Undo XEmacs-specific change to all ERC
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
236 buffers when module is removed.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
237 (erc-button-setup): Rename from erc-button-add-keys, and move
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
238 XEmacs-specific stuff here.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
239
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
240 * erc-goodies.el (erc-unmorse): Improve regexp for detecting
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
241 morse. Deal with the morse style that has "/ " at the end of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
242 every letter.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
243 (erc-imenu-setup): New function that sets up Imenu support. Add
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
244 it instead of a lambda form to erc-mode-hook.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
245 (scrolltobottom): Remove erc-scroll-to-bottom from all ERC buffers
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
246 when module is removed. Activate the functionality in all ERC
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
247 buffers when the module is activated, rather than leaving it up to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
248 the user.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
249 (move-to-prompt): New module that moves to the ERC prompt if a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
250 user tries to type elsewhere in the buffer, and then inserts their
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
251 keystrokes there. This is mostly taken from Johan Bockgård's init
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
252 file.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
253 (erc-move-to-prompt): New function that implements this.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
254 (erc-move-to-prompt-xemacs): New function that implements this for
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
255 XEmacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
256 (erc-move-to-prompt-init-xemacs): New function to perform the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
257 extra initialization step needed for XEmacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
258
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
259 * erc-page.el, erc-replace.el: Fix header and footer.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
260
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
261 * erc-track.el (erc-track-minor-mode-maybe): Take an optional
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
262 buffer arg so that we can put this in erc-connect-pre-hook. If
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
263 given this argument, include it in the check to determine whether
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
264 to activate erc-track-minor-mode.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
265 (track): Add erc-track-minor-mode-maybe to erc-connect-pre-hook,
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
266 so that we can use it as soon as a connection is attempted.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
267
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
268 * erc.el (erc-format-network, erc-format-target-and/or-network):
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
269 Use erc-network-name function instead, and check to see whether
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
270 that function is bound. This fixes an error in process filter for
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
271 people who did not have erc-services or erc-networks loaded.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
272 (erc-modules): Add move-to-prompt module and enable it by
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
273 default. Thanks to e1f for the suggestion.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
274
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
275 2008-01-18 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
276
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
277 * Makefile (EXTRAS): Include erc-list-old.el.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
278
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
279 * erc-dcc.el (erc-dcc-verbose): Rename from erc-verbose-dcc.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
280 (erc-pack-int): Rewrite to not depend on a count argument.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
281 (erc-unpack-int): Rewrite to remove 4-character limitation.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
282 (erc-dcc-server): Call set-process-coding-system and
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
283 set-process-filter-multibyte so that the contents get sent out
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
284 without modification.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
285 (erc-dcc-send-filter): Don't take a substring -- just pass the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
286 whole string to erc-unpack-int.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
287 (erc-dcc-receive-cache): New option that indicates the number of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
288 bytes to let the receive buffer grow before flushing it.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
289 (erc-dcc-file-name): New buffer-local variable to keep track of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
290 the filename of the currently-received file.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
291 (erc-dcc-get-file): Disable undo for a speed increase. Set
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
292 erc-dcc-file-name. Truncate the file before writing to it.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
293 (erc-dcc-append-contents): New function to append the contents of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
294 a buffer to a file and then erase the contents of the buffer.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
295 (erc-dcc-get-filter): Flush buffer contents after exceeding
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
296 erc-dcc-receive-cache. This allows large files to be downloaded
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
297 without storing the whole thing in memory.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
298 (erc-dcc-get-sentinel): Flush any remaining contents before
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
299 closing. No need to save buffer.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
300 (erc-dcc-listen-host): New option that determines which IP address
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
301 to listen on.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
302 (erc-dcc-public-host): New option that determines which IP address
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
303 to advertise when sending a file. This is useful for people who
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
304 are on a local subnet. Together, these two options replace
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
305 erc-dcc-host.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
306
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
307 * erc.el (erc-mode-line-format): Add %N and %S. %N is the name of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
308 the network, and %S is much like %s but with the network name
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
309 trumping the server name. Default to "%S %a". Thanks to e1f for
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
310 the suggestion.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
311 (erc-format-network): New function that formats the network name.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
312 (erc-format-target-and/or-network): New function that formats both
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
313 the network name and target, falling back on the server name if
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
314 the network name is not available.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
315 (erc-update-mode-line-buffer): Add the new format spec items.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
316
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
317 2008-01-17 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
318
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
319 * erc.el (erc-join-buffer): Improve documentation.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
320 (erc-query-display): New option indicating how to display a query
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
321 buffer that is made by using the /QUERY command. The default is
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
322 to display the query in a new window.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
323 (erc-cmd-QUERY): Use it. Improve docstring.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
324 (erc-auto-query): Default this to 'window-noselect instead,
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
325 because I've already seen bug reports about new users thinking
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
326 that ERC didn't display their test messages. Improve
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
327 customization type.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
328 (erc-notice-face): Make this work with XEmacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
329 (erc-join-buffer): Mention 'buffer in docstring. Improve
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
330 customization type.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
331
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
332 * erc-dcc.el (erc-dcc-send-sentinel): Better handle case where elt
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
333 is nil, in order to avoid an error. Thanks to Brent Goodrick for
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
334 the initial patch.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
335 (erc-dcc-display-send): New function split from erc-dcc-send-hook.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
336 (erc-dcc-send-connect-hook): Use it -- we don't like lambda forms
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
337 in hooks.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
338 (erc-dcc-send-filter): Display byte count if the client confirmed
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
339 too much, and kill the buffer. Otherwise a DoS might be possible
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
340 by making Emacs run out of RAM.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
341
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
342 * erc-backend.el (erc-server-connect): Detect early on whether the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
343 connection attempt has failed in order to avoid confusing error
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
344 messages.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
345
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
346 * erc-networks.el (erc-server-alist): Add Rizon network.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
347
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
348 * erc-services.el (erc-nickserv-passwords): Add Rizon to options.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
349 (erc-nickserv-alist): Add support for Rizon.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
350
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
351 * erc-track.el (erc-track-find-face): Don't let buttons in notices
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
352 trump default text. Use catch/throw. Default to first element of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
353 FACES is nothing is found.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
354
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
355 * erc-xdcc.el: Add local variables for proper indentation setup.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
356
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
357 2008-01-15 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
358
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
359 * erc-backend.el (erc-server-coding-system): Docfix.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
360 (erc-coding-system-for-target): Pass the `target' argument along
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
361 as the first and only argument. It's not good to just depend on a
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
362 dynamic binding.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
363
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
364 2008-01-10 Michael Olson <mwolson@gnu.org>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
365
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
366 * erc-backend.el (321, 322): Split message-displaying parts into
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
367 new functions, which are added to each response's respective
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
368 hook. This makes them easier to disable.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
369
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
370 * erc-list.el: New file from Tom Tromey. Use erc-propertize
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
371 instead of propertize. Require 'erc.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
372 (list): New module definition. Remove message-displaying
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
373 functions for 321 and 322 response handlers when enabling the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
374 module, and restore them when disabling. As a sanity check,
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
375 remove the erc-list-handle-322 function when disabling the module.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
376 (erc-list-handle-322): Handle the case where we run the LIST
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
377 command, but do not go through the normal steps.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
378 (erc-cmd-LIST): Add docstring. Strip initial space from line if
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
379 it is non-nil. Use make-local-variable to silence compiler
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
380 warning. Capture current buffer and pass it to
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
381 erc-list-install-322-handler.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
382 (erc-list-install-322-handler): Take server-buffer argument, so
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
383 that we are certain of being in the right buffer. Use 4th
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
384 argument to add-hook, so that erc-server-322-functions is only
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
385 modified in one buffer.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
386
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
387 * erc-list-old.el: Renamed from old erc-list.el.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
388
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
389 * erc.el (erc-modules): Add list-old.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
390 (erc-set-topic): Handle case where there are no newlines in the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
391 existing topic, which happens when /LIST is run.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
392 (erc-notice-face): If we have less than 88 colors, make this
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
393 blue. Otherwise the text will be pink in a tty, which looks
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
394 dreadful. Thanks to e1f for the report.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
395 (erc-remove-parsed-property): New option that determines whether
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
396 to remove the erc-parsed property after displaying a message.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
397 This should have the effect of making ERC take up less memory.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
398 (erc-display-line-1): Use it.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
399
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
400 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
401
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
402 * erc-ibuffer.el (erc-channel-modes):
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
403 Pass mode-name through format-mode-line
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
404
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
405
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
406 See ChangeLog.07 for earlier changes.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
407
112218
376148b31b5e Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents: 106815
diff changeset
408 Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
101278
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
409
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
410 This file is part of GNU Emacs.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
411
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
412 GNU Emacs is free software: you can redistribute it and/or modify
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
413 it under the terms of the GNU General Public License as published by
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
414 the Free Software Foundation, either version 3 of the License, or
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
415 (at your option) any later version.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
416
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
417 GNU Emacs is distributed in the hope that it will be useful,
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
418 but WITHOUT ANY WARRANTY; without even the implied warranty of
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
419 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
420 GNU General Public License for more details.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
421
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
422 You should have received a copy of the GNU General Public License
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
423 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
424
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
425 ;; Local Variables:
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
426 ;; coding: utf-8
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
427 ;; add-log-time-zone-rule: t
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
428 ;; End:
5f5536e16f6b ERC: Rotate ChangeLog.
Michael Olson <mwolson@gnu.org>
parents:
diff changeset
429