]> code.delx.au - gnu-emacs/blob - lisp/erc/ChangeLog
Update from erc--emacs--22
[gnu-emacs] / lisp / erc / ChangeLog
1 2006-08-07 Michael Olson <mwolson@gnu.org>
2
3 * erc-backend.el (erc-process-sentinel-1): Use erc-display-message
4 in several places instead of inserting text.
5 (erc-process-sentinel): Move to the input-marker before removing
6 the prompt.
7
8 * erc.el (erc-port): Fix customization options.
9 (erc-display-message): Handle null type explicitly. Previously,
10 this was relying on a chance side-effect. Cosmetic indentation
11 tweak.
12 (english): Add 'finished and 'terminated entries to the catalog.
13 Add initial and terminal newlines to 'disconnected and
14 'disconnected-noreconnect entries. Avoid long lines.
15
16 2006-08-06 Michael Olson <mwolson@gnu.org>
17
18 * erc.el (erc-arrange-session-in-multiple-windows): Fix bug with
19 multi-tty Emacs.
20 (erc-select-startup-file): Fix bug introduced by recent change.
21
22 2006-08-05 Michael Olson <mwolson@gnu.org>
23
24 * erc-log.el (erc-log-standardize-name): New function that returns
25 a filename that is safe for use for a log file.
26 (erc-current-logfile): Use it.
27
28 * erc.el (erc-startup-file-list): Search in ~/.emacs.d first,
29 since that is a fairly standard directory.
30 (erc-select-startup-file): Re-write to use
31 convert-standard-filename, which will ensure that MS-DOS systems
32 look for the _ercrc.el file.
33
34 2006-08-02 Michael Olson <mwolson@gnu.org>
35
36 * erc.el (erc-version-string): Release ERC 5.1.4.
37
38 * Makefile, NEWS, erc.texi: Update for the 5.1.4 release.
39
40 * erc.el (erc-active-buffer): Fix bug that caused messages to go
41 to the wrong buffer. Thanks to offby1 for the report.
42
43 * erc-backend.el (erc-coding-system-for-target): Handle case where
44 target is nil. Thanks to Kai Fan for the patch.
45
46 2006-07-29 Michael Olson <mwolson@gnu.org>
47
48 * erc-log.el (erc-log-setup-logging): Don't offer to save the
49 buffer. It will be saved automatically killed. Thanks to Johan
50 Bockgård and Tassilo Horn for pointing this out.
51
52 2006-07-27 Johan Bockgård <bojohan@users.sourceforge.net>
53
54 * erc.el (define-erc-module): Make find-function and find-variable
55 find the names constructed by `define-erc-module' in Emacs 22.
56
57 2006-07-14 Michael Olson <mwolson@gnu.org>
58
59 * erc-log.el (log): Make sure that we enable logging on
60 already-opened buffers as well, in case the user toggles this
61 module after loading ERC. Also be sure to remove logging ability
62 from all ERC buffers when the module is disabled.
63 (erc-log-setup-logging): Set buffer-file-name to nil rather than
64 the empty string. This should fix some errors that occur when
65 quitting Emacs without first killing all ERC buffers.
66 (erc-log-disable-logging): New function that removes the logging
67 ability from the current buffer.
68
69 * erc-spelling.el (spelling): Use dolist and buffer-live-p.
70
71 2006-07-12 Michael Olson <mwolson@gnu.org>
72
73 * erc-match.el (erc-log-matches): Bind inhibit-read-only rather
74 than call toggle-read-only.
75
76 * erc.el (erc-handle-irc-url): Move here from erc-goodies.el and
77 add autoload cookie.
78
79 2006-07-09 Michael Olson <mwolson@gnu.org>
80
81 * erc.el (erc-version-string): Release ERC 5.1.3.
82
83 * erc.texi: Update for the 5.1.3 release.
84
85 * erc-autoaway.el (erc-autoaway-set-back): Fix bug after returning
86 from being set automatically away and current buffer is not an ERC
87 buffer.
88
89 * erc-identd.el: Fix compiler error.
90
91 * erc.texi (Development): Use @subheading instead of @subsection.
92 (Advanced Usage): Add menu.
93 (Connecting): Fully document how to connect to an IRC server.
94 (Options, Tips and Tricks, Sample Configuration): New unwritten
95 sections.
96
97 * erc.el (erc-server, erc-port, erc-nick, erc-nick-uniquifier)
98 (erc-user-full-name, erc-password): Docfixes and customization
99 interface tweaks.
100 (erc-try-new-nick-p): Rename from
101 `erc-manual-set-nick-on-bad-nick-p' and invert meaning.
102 (erc-nickname-in-use): Use `erc-try-new-nick-p'. Check the length
103 of `erc-nick-uniquifier', in case someone wants multiple
104 characters.
105 (erc-compute-server, erc-compute-nick, erc-compute-full-name)
106 (erc-compute-port): Docfixes.
107
108 * erc-log.el (log): Move all add-hook calls here, rather than
109 executing them immediately, and also cause them to be un-hooked
110 when the module is removed.
111 (erc-save-buffer-on-part): Move next to
112 `erc-save-queries-on-quit'.
113 (erc-save-buffer-on-quit, erc-save-queries-on-quit): Default to t.
114 (erc-log-write-after-send, erc-log-write-after-insert): Default to
115 nil. This makes things fast, but reasonably failsafe, by default.
116
117 2006-07-08 Michael Olson <mwolson@gnu.org>
118
119 * erc-log.el (erc-log-insert-log-on-open): Make this nil by
120 default, since most IRC clients don't do this.
121 (erc-log-write-after-send): New option that determines whether the
122 log file will be written to after every sent message.
123 (erc-log-write-after-insert): New option that determines whether
124 the log file will be written to when new text is added to a logged
125 ERC buffer.
126 (log): Use the aforementioned options.
127
128 * erc.texi (Modules): Document the "completion" module.
129
130 * erc-pcomplete.el (pcomplete-erc-nicks): Make sure that we don't
131 have a nil element in the list when ignore-self is non-nil.
132
133 2006-07-05 Michael Olson <mwolson@gnu.org>
134
135 * erc.el (erc-modules): Add the `page' module to the list.
136
137 * erc.texi (Modules): Add entries for `list' and `page' modules.
138 Change "spell" to "spelling".
139 (History): Use past tense throughout.
140
141 2006-07-02 Michael Olson <mwolson@gnu.org>
142
143 * erc-backend.el (erc-call-hooks): Fix (stringp nil) error that
144 can happen when doing /PART.
145
146 * erc.el (erc-quit-reason-various-alist)
147 (erc-part-reason-various-alist): In the example, use "^$" as an
148 example, since "" matches anything.
149 (erc-quit-reason-various, erc-part-reason-various): If no argument
150 is given, and no matches are found, use our default reason instead
151 of "nil".
152
153 2006-06-30 Michael Olson <mwolson@gnu.org>
154
155 * erc.texi (Modules): Mention identd.
156 (Releases): Update mailing list address and download location.
157 (Development): Refactor. Provide updated directions for Arch.
158 Make URLs clickable.
159 (Keystroke Summary): Typo fix. Use more Texinfo syntax.
160 (Getting Started): Give simpler example. We do not need to
161 explicitly load every module.
162 (History): Update.
163
164 * erc.el (erc-version-modules): Remove, since we do not use this
165 function anymore.
166 (erc-latest-version, erc-ediff-latest-version): Remove, since this
167 was only useful back when ERC consisted of one file.
168 (erc-modules): Add line for identd.
169 (erc-get-channel-mode-from-keypress): Typo fix.
170
171 * erc-imenu.el: Remove unnecessary lines in header.
172
173 * erc-goodies.el (erc-handle-irc-url): Docfix.
174
175 * erc-identd.el: Define an ERC module for this.
176 (erc-identd-start): Don't create a process buffer if possible.
177 Otherwise, use conventional hidden names for process buffers.
178
179 2006-06-29 Michael Olson <mwolson@gnu.org>
180
181 * erc-backend.el (erc-coding-system-for-target): Match
182 case-insensitively. Use a pattern match instead of `assoc', as
183 per the documentation for `erc-encoding-coding-alist'.
184
185 * erc-track.el (erc-track-shorten-aggressively): Fix typo.
186
187 2006-06-27 Michael Olson <mwolson@gnu.org>
188
189 * erc.el: Update maintainer information and URLs.
190
191 2006-06-14 Michael Olson <mwolson@gnu.org>
192
193 * erc.el (erc-active-buffer): If the active buffer has been
194 deleted, default to the server buffer.
195 (erc-toggle-flood-control): When the user hits C-c C-f, make flood
196 control really toggle, not unconditionally turn off.
197
198 2006-06-12 Michael Olson <mwolson@gnu.org>
199
200 * NEWS: Add items since the 5.1.2 release.
201
202 * erc-autoaway.el (erc-autoaway-caused-away): New variable that
203 indicates whether the current away status was caused by this
204 module.
205 (erc-autoaway-set-back): Only set back if this module set the user
206 away.
207 (erc-autoaway-set-away): Update `erc-autoaway-caused-away'.
208 (erc-autoaway-reset-indicators): New function that resets some
209 indicators when the user is no longer away.
210 (autoaway): Add the above function to the 305 hook.
211
212 2006-06-05 Romain Francoise <romain@orebokech.com>
213
214 * erc.texi (History): Fix various typos.
215
216 2006-06-04 Michael Olson <mwolson@gnu.org>
217
218 * erc-autoaway.el (erc-autoaway-idle-method): Move after the
219 definition of the autoaway module.
220 (autoaway): Don't do anything if erc-autoaway-idle-method is
221 unbound. This prevents an error on startup.
222
223 2006-06-03 Michael Olson <mwolson@gnu.org>
224
225 * erc-autoaway.el: Thanks to Mark Plaksin for the ideas and patch.
226 (erc-autoaway-idle-method): Renamed from
227 `erc-autoaway-use-emacs-idle'. We have more than two choices for
228 how to do this, so it's best to make this take symbol values.
229 Improve documentation. Remove warning against Emacs idle-time;
230 the point is moot now that we get user idle time via a different
231 method. Make sure we disable and re-enable the module when
232 changing this value.
233 (autoaway): Conditionalize on the above option. If using the idle
234 timer or user idle methods, don't add anything to the
235 send-completed or server-001 hooks, since it is unnecessary.
236 (erc-autoaway-reestablish-idletimer, erc-autoaway-message):
237 Docfix.
238 (erc-autoaway-idle-seconds): Use erc-autoaway-idle-method.
239 (erc-autoaway-reset-idle-irc): Renamed from
240 `erc-autoaway-reset-idle'. Don't pass line to
241 `erc-autoaway-set-away', since it is not used.
242 (erc-autoaway-reset-idle-user): New function that resets the idle
243 state for user idle time.
244 (erc-autoaway-set-back): Remove line argument, since it is not
245 used.
246
247 2006-06-01 Michael Olson <mwolson@gnu.org>
248
249 * erc.el (erc-buffer-filter): Make sure all buffers returned from
250 this are live.
251
252 2006-05-01 Edward O'Connor <ted@oconnor.cx>
253
254 * erc-goodies.el: (erc-handle-irc-url): New function, suitable as
255 a value for `url-irc-function'.
256
257 2006-04-18 Diane Murray <disumu@x3y2z1.net>
258
259 * erc-pcomplete.el (pcomplete-erc-nicks): Added new optional
260 argument IGNORE-SELF. If this is non-nil, don't return the user's
261 current nickname. Doc fix.
262 (pcomplete/erc-mode/complete-command): Don't complete the current
263 nickname.
264
265 2006-04-05 Diane Murray <disumu@x3y2z1.net>
266
267 * erc.el (erc-cmd-SV): Removed the exclamation point. Show the
268 build date as it's shown in `emacs-version'.
269
270 * erc-capab.el (erc-capab-identify-add-prefix): Insert the prefix
271 with the same face property as the previous character.
272
273 2006-04-02 Michael Olson <mwolson@gnu.org>
274
275 * erc-backend.el, erc-ezbounce.el, erc-join.el, erc-netsplit.el,
276 erc.el: Make sure to include a newline inside of negated classes,
277 so that a newline is not matched.
278
279 2006-04-01 Michael Olson <mwolson@gnu.org>
280
281 * erc-backend.el (erc-server-connect-function): Don't try to
282 detect the existence of the `open-network-stream-nowait' function,
283 since I can't find it in Emacs21, XEmacs21, or Emacs22.
284
285 2006-03-26 Michael Olson <mwolson@gnu.org>
286
287 * erc.el (erc-header-line): New face that will be used to colorize
288 the text of the header-line, provided that
289 `erc-header-line-face-method' is non-nil.
290 (erc-prompt-face): Fix formatting.
291 (erc-header-line-face-method): New option that determines the
292 method used for colorizing header-line text. This may be a
293 function, nil, or non-nil.
294 (erc-update-mode-line-buffer): Use the aforementioned option and
295 face to colorize the header-line text, if that is what the user
296 wants.
297 (erc-send-input): If flood control is not activated, don't split
298 the input line.
299
300 2006-03-25 Michael Olson <mwolson@gnu.org>
301
302 * erc.el (erc-cmd-QUOTE): Install patch from Aravind Gottipati
303 that fixes the case where there is no leading whitespace. Only
304 remove the first space character, though.
305
306 * erc-identd.el (erc-identd-start): Fix a bug by making sure that
307 erc-identd-process is set properly.
308 (erc-identd-start, erc-identd-stop): Add autoload cookies.
309 (erc-identd-start): Pass :host parameter so this works with Emacs
310 22.
311
312 2006-03-09 Diane Murray <disumu@x3y2z1.net>
313
314 * erc-button.el (erc-button-keymap): Use <backtab> rather than
315 <C-tab> for `erc-button-previous' as it is a more standard key
316 binding for this type of function.
317
318 2006-02-19 Michael Olson <mwolson@gnu.org>
319
320 * erc.el (erc-version-string): Release ERC 5.1.2.
321
322 2006-02-19 Diane Murray <disumu@x3y2z1.net>
323
324 * erc-button.el (erc-button-keymap): Bind `erc-button-previous' to
325 <C-tab>.
326 (erc-button-previous): New function.
327
328 2006-02-15 Michael Olson <mwolson@gnu.org>
329
330 * NEWS: Add category for ERC 5.2.
331
332 * erc.el (erc): Move to the end of the buffer when a continued
333 session is detected. Thanks to e1f and indio for the report and
334 testing a potential fix.
335
336 2006-02-14 Michael Olson <mwolson@gnu.org>
337
338 * debian/changelog: Prepare a new Debian package.
339
340 * Makefile (debprepare): New rule that creates an ERC snapshot
341 directory for use in both new Debian releases and revisions for
342 Debian packages.
343 (debrelease, debrevision-mwolson): Use debprepare.
344
345 * NEWS: Bring up-to-date.
346
347 * erc-stamp.el (erc-insert-timestamp-right): For now, put
348 timestamps before rather than after erc-fill-column when
349 erc-timestamp-right-column is nil. This way we won't surprise
350 anyone unpleasantly, or so it is hoped.
351
352 2006-02-13 Michael Olson <mwolson@gnu.org>
353
354 * erc-dcc.el: Use (eval-when-compile (require 'cl)).
355
356 2006-02-12 Michael Olson <mwolson@gnu.org>
357
358 * erc-autoaway.el, erc-dcc.el, erc-ezbounce.el, erc-fill.el,
359 erc-goodies.el, erc-hecomplete.el, erc-ibuffer.el, erc-identd.el,
360 erc-imenu.el, erc-join.el, erc-lang.el, erc-list.el, erc-log.el,
361 erc-match.el, erc-menu.el, erc-netsplit.el, erc-networks.el,
362 erc-notify.el, erc-page.el, erc-pcomplete.el, erc-replace.el,
363 erc-ring.el, erc-services.el, erc-sound.el, erc-speedbar.el,
364 erc-spelling.el, erc-track.el, erc-truncate.el, erc-xdcc.el: Add
365 2006 to copyright years, to comply with the changed guidelines.
366
367 2006-02-11 Michael Olson <mwolson@gnu.org>
368
369 * erc.el (erc-update-modules): Make some requirements shorter, so
370 that it's easier to see why they are needed.
371
372 * erc-stamp.el (erc-timestamp-use-align-to): Renamed from
373 `erc-timestamp-right-align-by-pixel'. Set the default based on
374 whether we are in Emacs 22, and using X. Improve documentation.
375 (erc-insert-aligned): Remove calculation of offset, since
376 :align-to pos works after all. Unlike the previous solution, this
377 one works when erc-stamp.el is compiled.
378 (erc-insert-timestamp-right): Don't add length of string, and then
379 later remove its displayed width. This puts timestamps after
380 erc-fill-column when erc-timestamp-right-column is nil, rather
381 than before it. It also fixes a subtle bug. Remove use of
382 `current-window', since there is no variable by that name in
383 Emacs21, Emacs22, or XEmacs21 beta. Check to see whether
384 `erc-fill-column' is non-nil before using it.
385
386 2006-02-11 Diane Murray <disumu@x3y2z1.net>
387
388 * erc-list.el: Define `list' module which sets the alias
389 `erc-cmd-LIST' to `erc-list-channels' when enabled and
390 `erc-list-channels-simple' when disabled.
391 (erc-list-channels): Was `erc-cmd-LIST', renamed.
392 (erc-list-channels-simple): New function.
393
394 * erc.el (erc-modules): Added `list' to enabled modules. Moved
395 customization options left in source code.
396
397 * erc-menu.el (erc-menu-definition): Use `erc-list-channels'.
398
399 * erc-spelling.el (define-erc-module): Make sure there's a buffer
400 before calling `with-current-buffer'.
401
402 2006-02-10 Michael Olson <mwolson@gnu.org>
403
404 * Makefile (debbuild): Split from debrelease.
405 (debrevision-mwolson): New rule that causes a Debian revision to
406 be built.
407
408 * erc.el (erc-migrate-modules): Use a better algorithm. Thanks to
409 Johan Bockgård.
410 (erc-modules): Change use of 'pcomplete to 'completion.
411
412 2006-02-09 Diane Murray <disumu@x3y2z1.net>
413
414 * erc.el (erc-get-parsed-vector, erc-get-parsed-vector-nick)
415 (erc-get-parsed-vector-type): Moved here from erc-match.el.
416
417 * erc-match.el (erc-get-parsed-vector, erc-get-parsed-vector-nick)
418 (erc-get-parsed-vector-type): Moved these functions to erc.el
419 since they can be useful outside of the text matching module.
420
421 * erc-dcc.el, erc-stamp.el, erc-xdcc.el: Changed "Emacs IRC Client"
422 to "ERC".
423
424 2006-02-07 Michael Olson <mwolson@gnu.org>
425
426 * ChangeLog.01, ChangeLog.02, ChangeLog.03, ChangeLog.04,
427 ChangeLog.05: Rename from ChangeLog.NNNN in order to disambiguate
428 the filenames in DOS.
429
430 * erc-goodies.el: Comment fix.
431
432 * erc-hecomplete.el: Rename from erc-complete.el. Update
433 commentary. Use define-erc-module so that it's possible to
434 actually use this.
435 (erc-hecomplete): Rename function from `erc-complete'.
436 (erc-hecomplete): Rename group from `erc-old-complete'. Docfix.
437
438 * erc-join.el: Rename from erc-autojoin.el.
439
440 * erc-networks.el: Rename from erc-nets.el.
441
442 * erc-services.el: Rename from erc-nickserv.el.
443
444 * erc-stamp.el (erc-insert-aligned): Don't take 3rd argument. Use
445 the simpler `indent-to' function when
446 `erc-timestamp-right-align-by-pixel' is nil.
447 (erc-insert-timestamp-right): If the timestamp goes on the
448 following line, don't add timestamp properties to the spaces in
449 front of it.
450
451 * erc.el (erc-migrate-modules): New function that eases migration
452 of module names.
453 (erc-modules): Call erc-migrate-modules in the :get accessor.
454 (erc-modules, erc-update-modules): Update for new modules names.
455 (erc-cmd-SMV): Remove, since this does not give useful output due
456 to the version strings being removed from ERC modules.
457
458 2006-02-05 Michael Olson <mwolson@gnu.org>
459
460 * erc-spelling.el (erc-spelling-init): If
461 `erc-spelling-dictionaries' is nil, do not set
462 ispell-local-dictionary. Before, it was being set to nil, which
463 was causing a long delay while the ispell process restarted.
464 (erc-spelling-unhighlight-word): New function that removes
465 flyspell properties from a spell-checked word.
466 (erc-spelling-flyspell-verify): Don't spell-check nicks or words
467 that have '/' before them.
468
469 2006-02-04 Michael Olson <mwolson@gnu.org>
470
471 * erc-autojoin.el: Use (eval-when-compile (require 'cl)).
472
473 * erc-complete.el (erc-nick-completion-exclude-myself)
474 (erc-try-complete-nick): Use better function for getting list of
475 channel users.
476
477 * erc-goodies.el: Docfix.
478
479 * erc-stamp.el: Use new arch tagline, since the other one wasn't
480 being treated properly.
481
482 * erc.el (erc-version-string): Release ERC 5.1.1.
483
484 2006-02-03 Zhang Wei <id.brep@gmail.com>
485
486 * erc.el (erc-version-string): Don't hard-code Emacs version.
487 (erc-version): Use emacs-version.
488
489 2006-01-31 Michael Olson <mwolson@gnu.org>
490
491 * erc-stamp.el: Update copyright years.
492
493 2006-01-30 Simon Josefsson <jas@extundo.com>
494
495 * erc.el (erc-open-ssl-stream): Use tls.el.
496
497 2006-01-30 Michael Olson <mwolson@gnu.org>
498
499 * erc-stamp.el (erc-timestamp-right-align-by-pixel): New option
500 that determines whether to use pixel values to align right
501 timestamps. The default is not to do so, since it only works with
502 Emacs22 on X, and even then some people have trouble.
503 (erc-insert-aligned): Use `erc-timestamp-right-align-by-pixel'.
504
505 2006-01-29 Michael Olson <mwolson@gnu.org>
506
507 * ChangeLog, ChangeLog.2005, ChangeLog.2004, ChangeLog.2003,
508 ChangeLog.2002, ChangeLog.2001: Add "See ChangeLog.NNNN" line for
509 earlier changes. Use utf-8 encoding. Fix some accent typos.
510
511 * erc-speedbar.el (erc-speedbar-buttons): Fix reference to free
512 variable.
513 (erc-speedbar-goto-buffer): Fix compiler warning.
514
515 * erc-ibuffer.el: Use `define-ibuffer-filter' instead of
516 `ibuffer-degine-limiter'. Use `define-ibuffer-column' instead of
517 `ibuffer-define-column'. Require 'ibuf-ext so that the macros
518 work without compiler warnings.
519
520 * man/erc.texi (Obtaining ERC, Installation): Note that these
521 sections may be skipped if using the version of ERC that comes
522 with Emacs.
523
524 2006-01-29 Edward O'Connor <ted@oconnor.cx>
525
526 * erc-viper.el: Remove. Now that ERC is included in Emacs, these
527 work-arounds live in Viper itself.
528
529 2006-01-28 Michael Olson <mwolson@gnu.org>
530
531 * erc-*.el, erc.texi, NEWS: Add Arch taglines as per Emacs
532 guidelines.
533
534 * erc-*.el: Space out copyright years like the rest of Emacs. Use
535 the Emacs copyright statement. Refer to ourselves as ERC rather
536 than "Emacs IRC Client", since there are now several IRC clients
537 for Emacs.
538
539 * erc-compat.el (erc-emacs-build-time): Define as a variable.
540
541 * erc-log.el (erc-log-setup-logging): Use write-file-functions.
542
543 * erc-ibuffer.el: Require 'erc.
544
545 * erc-stamp.el (erc-insert-aligned): Only use the special text
546 property when window-system is X.
547
548 * erc.texi: Adapt for inclusion in Emacs.
549
550 2006-01-28 Johan Bockgård <bojohan@users.sourceforge.net>
551
552 * erc.el (erc-format-message): More `cl' breakage; don't use
553 `oddp'.
554
555 2006-01-27 Michael Olson <mwolson@gnu.org>
556
557 * debian/changelog: Update for new release.
558
559 * debian/control (Description): Update.
560
561 * debian/rules: Concatenate ChangeLog for 2005.
562
563 * Makefile (MISC): Include ChangeLog.2005 and erc.texi.
564 (debrelease, release): Copy images directory.
565
566 * NEWS: Spelling fixes. Add items for recent changes.
567
568 * erc.el (erc): Move call to erc-update-modules before the call to
569 erc-mode. This should fix a timestamp display issue.
570 (erc-version-string): Release ERC 5.1.
571
572 2006-01-26 Michael Olson <mwolson@gnu.org>
573
574 * erc-stamp.el (erc-insert-aligned): New function that inserts
575 text in an perfectly-aligned way relative to the right margin. It
576 only works well with Emacs22. A sane fallback is provided for
577 other versions of Emacs.
578 (erc-insert-timestamp-right): Use the new function.
579
580 2006-01-25 Edward O'Connor <ted@oconnor.cx>
581
582 * erc.el (erc-modules): Ensure that `erc-button-mode' gets enabled
583 before `erc-match-mode'.
584
585 * erc-match.el (match): Append `erc-match-message' to
586 `erc-insert-modify-hook'.
587
588 2006-01-25 Michael Olson <mwolson@gnu.org>
589
590 * FOR-RELEASE: Mark last release requirement as done.
591
592 * Makefile (realclean, distclean): Remove docs.
593
594 * erc.texi: Take care of all pre-5.1 items.
595
596 * erc-backend.el (erc-server-send, erc-server-send-queue): Wrap
597 `process-send-string' in `condition-case' to avoid an error when
598 quitting ERC.
599
600 * erc-stamp.el (erc-insert-timestamp-right): Try to deal with
601 variable-width characters in the timestamp and on the same line.
602 The latter is a kludge, but it seems to work with most of the
603 input I've thrown at it so far. It's certainly better than going
604 past the end of line consistently when we have variable-width
605 characters on the same line. When `erc-timestamp-intangible' is
606 non-nil, add intangible properties to the whitespace as well, so
607 that hitting <end> does what you'd expect.
608
609 * erc.el (erc-flood-protect, erc-toggle-flood-control): Update
610 this to only use boolean values for `erc-flood-protect'. Update
611 documentation.
612 (erc-cmd-QUIT): Set the active buffer to be the server buffer, so
613 that any QUIT-related messages go there.
614 (erc): Try to be more clever about re-using channel buffers when
615 automatically re-connecting. Thanks to e1f for noticing.
616
617 2006-01-23 Michael Olson <mwolson@gnu.org>
618
619 * ChangeLog.2005: Remove erroneous line.
620
621 * FOR-RELEASE: Make that the Makefile tweaking is complete.
622 (NEWS): Mark as done.
623
624 * Makefile (MANUAL): New option indicating the name of the manual.
625 (PREFIX, ELISPDIR, INFODIR): New options that specify the
626 directories to install lisp code and info manuals to. PREFIX is
627 used only by ELISPDIR and INFODIR.
628 (all): Call `lisp' and create the manual.
629 (lisp): Compile lisp code.
630 (%.info, %.html): New rules that make Info files and HTML files,
631 respectively, from a TexInfo source.
632 (doc): Create both the Info and HTML versions of the manual. This
633 is for the user -- we never call it automatically.
634 (install-info): Install Info files.
635 (install-bin): Install compiled and source Lisp files.
636 (todo): Remove, since it seems pointless.
637
638 * NEWS: Update.
639
640 * README: Add Installation instructions. Tweak layout.
641
642 * erc.texi: Work on some pre-5.1 items.
643
644 * erc-stamp.el, erc-track.el: Move some functions and options in
645 order to get rid of a few compiler warnings.
646
647 * erc.el (erc-modules): Enable readonly by default. This will
648 prevent new users from accidentally removing old messages, which
649 could be disconcerting. Also enable stamp by default, since
650 timestamps are a fairly standard feature among IRC clients.
651
652 * erc-button.el: Munge whitespace.
653
654 * erc-identd.el (erc-identd-start): Instead of throwing an error,
655 just try to use the obsolete function.
656
657 2006-01-22 Michael Olson <mwolson@gnu.org>
658
659 * erc-backend.el (erc-decode-string-from-target): Make sure that
660 we have a string as an argument. If not, coerce it to the empty
661 string. Hopefully, this will work painlessly around an edge case
662 related to quitting ERC around the same time a message comes in.
663
664 2006-01-22 Johan Bockgård <bojohan@users.sourceforge.net>
665
666 * erc-track.el: Use `(eval-when-compile (require 'cl))' (for
667 `case'). Doc fixes.
668 (erc-find-parsed-property): Simplify.
669 (erc-track-get-active-buffer): Fix logic. Simplify.
670 (erc-track-switch-buffer): Remove unused variable `dir'. Simplify.
671
672 * erc-speak.el: Doc fixes.
673 (erc-speak-region): `propertize' --> `erc-propertize'.
674
675 * erc-dcc.el (erc-dcc-chat-parse-output): `propertize' -->
676 `erc-propertize'.
677
678 * erc-button.el (erc-button-add-button): Take erc-fill-prefix into
679 account when wrapping URLs.
680
681 * erc-bbdb.el (erc-bbdb-elide-display): Doc fix.
682
683 * erc-backend.el (define-erc-response-handler): Doc fix.
684
685 2006-01-22 Michael Olson <mwolson@gnu.org>
686
687 * erc.el (erc-update-modules): Use `require' instead of `load',
688 but prevent it from causing errors, in order to preserve the
689 previous behavior.
690
691 2006-01-21 Michael Olson <mwolson@gnu.org>
692
693 * FOR-RELEASE (Source): Mark cl task as done.
694
695 * Makefile (erc-auto.el): Call erc-generate-autoloads rather than
696 generate-autoloads.
697 (erc-auto.el, %.elc): Don't show command, just its output.
698
699 * NEWS: Add items from 2005-01-01 to 2005-08-13.
700
701 * debian/copyright (Copyright): Update.
702
703 * erc-auto.in (erc-generate-autoloads): Rename from
704 generate-autoloads.
705
706 * erc.el, erc-autoaway.el, erc-backend.el: Use
707 erc-server-process-alive instead of erc-process-alive.
708
709 * erc.el, erc-backend.el, erc-ezbounce.el, erc-list.el,
710 erc-log.el, erc-match.el, erc-nets.el, erc-netsplit.el,
711 erc-nicklist.el, erc-nickserv.el, erc-notify.el, erc-pcomplete.el:
712 Use (eval-when-compile (require 'cl)), so that compilation doesn't
713 fail.
714
715 * erc-fill.el, erc-truncate.el: Whitespace munging.
716
717 * erc.el: Update copyright notice. Remove eval-after-load code.
718 (erc-with-buffer): Docfix.
719 (erc-once-with-server-event, erc-once-with-server-event-global)
720 (erc-with-buffer, erc-with-all-buffers-of-server): Use erc-gensym
721 instead of gensym.
722 (erc-banlist-update): Use erc-delete-if instead of delete-if.
723 (erc): Call `erc-update-modules' here.
724
725 * erc-backend.el: Require 'erc-compat to minimize compiler
726 warnings.
727 (erc-decode-parsed-server-response): Docfix.
728 (erc-server-process-alive): Move here from erc.el and rename from
729 `erc-process-alive'.
730 (erc-server-send, erc-remove-channel-users): Make sure process is
731 alive before sending data to it.
732
733 * erc-bbdb.el: Update copyright years.
734 (erc-bbdb-whois): Remove overexuberant comment.
735
736 * erc-button.el: Require erc-fill, since we make liberal use of
737 `erc-fill-column'.
738
739 * erc-compat.el (erc-const-expr-p, erc-list*, erc-assert): New
740 functions, the latter of which provides an `assert' equivalent.
741 (erc-remove-if-not): New function that provides a simple
742 implementation of `remove-if-not'.
743 (erc-gensym): New function that provides a simple implementation
744 of `gensym'.
745 (erc-delete-if): New function that provides a simple
746 implementation of `delete-if'.
747 (erc-member-if): New function that provides a simple
748 implementation of `member-if'.
749 (field-end): Remove this, since it is unused, and later versions
750 of XEmacs have this function already.
751 (erc-function-arglist): Moved here from erc.el.
752 (erc-delete-dups): New compatibility function for dealing with
753 XEmacs.
754 (erc-subseq): New function copied from cl-extra.el.
755
756 * erc-dcc.el: Require pcomplete during compilation to avoid
757 compiler warnings.
758 (erc-unpack-int, erc-dcc-send-filter)
759 (erc-dcc-get-filter): Use erc-assert instead of assert.
760 (pcomplete/erc-mode/DCC): Use erc-remove-if-not instead of
761 remove-if-not.
762
763 * erc-match.el (erc-log-matches): Fix compiler warning.
764
765 * erc-nicklist.el: Update copyright notice.
766 (erc-nicklist-menu): Change use of caadr to (car (cadr ...)).
767 (erc-nicklist-bitlbee-connected-p): Remove.
768 (erc-nicklist-insert-medium-name-or-icon): Accept channel
769 argument. Use it to determine whether we are on bitlbee. Now
770 that bitlbee names its channel "&bitlbee", this is trivial.
771 (erc-nicklist-insert-contents): Pass channel as specified above.
772 Don't try to determine whether we are on bitlbee here.
773 (erc-nicklist-channel-users-info): Use erc-remove-if-not instead
774 of remove-if-not.
775 (erc-nicklist-search-for-nick): Use erc-member-if instead of
776 member-if.
777
778 * erc-notify.el (erc-notify-QUIT): Use erc-delete-if with a
779 partially-evaluated lambda expression instead of `delete' and
780 `find'.
781
782 * erc-track.el: Use erc-assert.
783 (erc-track-modified-channels): Remove use of `return'.
784 (erc-track-modified-channels): Use `cadr' instead of `second',
785 since otherwise we would need yet another eval-when-compile line.
786
787 2006-01-19 Michael Olson <mwolson@gnu.org>
788
789 * erc-backend.el (erc-process-sentinel-1): Remove attempt to
790 detect SIGPIPE, since it doesn't work.
791
792 2006-01-10 Diane Murray <disumu@x3y2z1.net>
793
794 * erc-spelling.el: Updated copyright years.
795 (define-erc-module): Enable/disable `flyspell-mode' for all open
796 ERC buffers as well.
797 (erc-spelling-dictionaries): Reworded customize description.
798
799 * erc.el (erc-command-symbol): New function.
800 (erc-extract-command-from-line): Use `erc-command-symbol'. This
801 fixes a bug where "Symbol's function definition is void:
802 erc-cmd-LIST" would be shown after typing /list at the prompt (the
803 command was interned because erc-menu.el uses it and is enabled by
804 default whereas erc-list.el is not).
805
806 * NEWS: Started a list of renamed variables.
807
808 * erc.el: Reworded the message sent when defining variable
809 aliases.
810 (erc-command-indicator-face): Doc fix.
811 (erc-modules): Enable the match module by default which makes
812 current nickname highlighting on as the default.
813
814 * erc-button.el: Updated copyright years.
815 (erc-button): New face.
816 (erc-button-face): Use `erc-button'.
817 (erc-button-nickname-face): New customizable variable.
818 (erc-button-add-nickname-buttons, erc-button-add-buttons-1): Send
819 new argument to `erc-button-add-button'.
820 (erc-button-add-button): Doc fix. Added new argument to function
821 definition, NICK-P. If it's a nickname, use
822 `erc-button-nickname-face', otherwise use `erc-button-face'. This
823 makes channel tracking and buttons work better together when
824 `erc-button-buttonize-nicks' is enabled, since there is a nickname
825 on just about every line.
826
827 * erc-track.el (erc-track-use-faces): Doc fix.
828 (erc-track-faces-priority-list): Added `erc-button' to list.
829 (erc-track-priority-faces-only): Doc fix.
830
831 2006-01-09 Diane Murray <disumu@x3y2z1.net>
832
833 * erc-button.el (erc-button-url-regexp): Use `concat' so the
834 regexp is not one long line.
835 (erc-button-alist): Fixed so that customizing works correctly.
836 Reorganized. Removed lambda functions with more than two lines.
837 Doc fix.
838 (erc-button-describe-symbol, erc-button-beats-to-time): New
839 functions. Moved from `erc-button-alist'.
840
841 2006-01-07 Michael Olson <mwolson@gnu.org>
842
843 * erc-backend.el (erc-process-sentinel-1): Don't try to re-open a
844 process if a SIGPIPE occurs. This happens when a new message
845 comes in at the same time a /quit is requested.
846 (erc-process-sentinel): Use string-match rather than string= to do
847 these comparisons. Matching literal newlines makes me nervous.
848
849 * erc-track.el (erc-track-remove-from-mode-line): Handle case
850 where global-mode-string is not a list. Emacs22 permits this.
851
852
853 See ChangeLog.05 for earlier changes.
854
855 Copyright (C) 2006 Free Software Foundation, Inc.
856 Copying and distribution of this file, with or without modification,
857 are permitted provided the copyright notice and this notice are preserved.
858
859 ;; Local Variables:
860 ;; coding: utf-8
861 ;; End:
862
863 ;; arch-tag: 865a75f6-2bcb-46df-bf0c-b514dadf688a