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