Mercurial > emacs
comparison man/rcirc.texi @ 68441:e09d03f931a8
Capitalize dir entry for consistency with the entry
in info/dir and other entries in the Emacs category.
Fix typos. Delete trailing whitespace.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Sat, 28 Jan 2006 21:32:07 +0000 |
parents | 945e62b87853 |
children | 11b616eddda4 |
comparison
equal
deleted
inserted
replaced
68440:4d823104d241 | 68441:e09d03f931a8 |
---|---|
27 @end quotation | 27 @end quotation |
28 @end copying | 28 @end copying |
29 | 29 |
30 @dircategory Emacs | 30 @dircategory Emacs |
31 @direntry | 31 @direntry |
32 * rcirc: (rcirc). Internet Relay Chat (IRC) client. | 32 * Rcirc: (rcirc). Internet Relay Chat (IRC) client. |
33 @end direntry | 33 @end direntry |
34 | 34 |
35 @titlepage | 35 @titlepage |
36 @title rcirc Manual | 36 @title rcirc Manual |
37 @page | 37 @page |
50 communicate with each other in real-time. Communication occurs both in | 50 communicate with each other in real-time. Communication occurs both in |
51 topic channels which are collections of many users, or privately, with | 51 topic channels which are collections of many users, or privately, with |
52 just one other user. | 52 just one other user. |
53 | 53 |
54 @menu | 54 @menu |
55 * Basics:: | 55 * Basics:: |
56 * Reference:: | 56 * Reference:: |
57 * Hacking and Tweaking:: | 57 * Hacking and Tweaking:: |
58 * Key Index:: | 58 * Key Index:: |
59 * Variable Index:: | 59 * Variable Index:: |
60 * Index:: | 60 * Index:: |
61 | 61 |
62 @detailmenu | 62 @detailmenu |
63 --- The Detailed Node Listing --- | 63 --- The Detailed Node Listing --- |
64 | 64 |
65 Basics | 65 Basics |
90 | 90 |
91 This chapter contains a brief introduction to IRC (Internet Relay Chat), | 91 This chapter contains a brief introduction to IRC (Internet Relay Chat), |
92 and a quick tutorial on @code{rcirc}. | 92 and a quick tutorial on @code{rcirc}. |
93 | 93 |
94 @menu | 94 @menu |
95 * Internet Relay Chat:: | 95 * Internet Relay Chat:: |
96 * Getting started with rcirc:: | 96 * Getting started with rcirc:: |
97 @end menu | 97 @end menu |
98 | 98 |
99 @node Internet Relay Chat, Getting started with rcirc, Basics, Basics | 99 @node Internet Relay Chat, Getting started with rcirc, Basics, Basics |
100 @section Internet Relay Chat | 100 @section Internet Relay Chat |
101 @cindex internet relay chat | 101 @cindex internet relay chat |
237 This is the reference section of the manual. It is not complete. For | 237 This is the reference section of the manual. It is not complete. For |
238 complete listings of @code{rcirc} features, use Emacs built-in | 238 complete listings of @code{rcirc} features, use Emacs built-in |
239 documentation. | 239 documentation. |
240 | 240 |
241 @menu | 241 @menu |
242 * rcirc commands:: | 242 * rcirc commands:: |
243 * Useful IRC commands:: | 243 * Useful IRC commands:: |
244 * Configuration:: | 244 * Configuration:: |
245 @end menu | 245 @end menu |
246 | 246 |
247 @node rcirc commands, Useful IRC commands, Reference, Reference | 247 @node rcirc commands, Useful IRC commands, Reference, Reference |
248 @section rcirc commands | 248 @section rcirc commands |
249 @cindex rcirc commands | 249 @cindex rcirc commands |
498 @cindex hacking and tweaking | 498 @cindex hacking and tweaking |
499 | 499 |
500 Here are some examples of stuff you can do to configure @code{rcirc}. | 500 Here are some examples of stuff you can do to configure @code{rcirc}. |
501 | 501 |
502 @menu | 502 @menu |
503 * Skipping /away messages using handlers:: | 503 * Skipping /away messages using handlers:: |
504 * Using fly spell mode:: | 504 * Using fly spell mode:: |
505 * Scrolling conservatively:: | 505 * Scrolling conservatively:: |
506 * Changing the time stamp format:: | 506 * Changing the time stamp format:: |
507 * Defining a new command:: | 507 * Defining a new command:: |
508 * Reconnecting after you have lost the connection:: | 508 * Reconnecting after you have lost the connection:: |
509 @end menu | 509 @end menu |
510 | 510 |
511 @node Skipping /away messages using handlers, Using fly spell mode, Hacking and Tweaking, Hacking and Tweaking | 511 @node Skipping /away messages using handlers, Using fly spell mode, Hacking and Tweaking, Hacking and Tweaking |
512 @section Skipping @code{/away} messages using handlers | 512 @section Skipping @code{/away} messages using handlers |
513 @cindex /away messages | 513 @cindex /away messages |
514 | 514 |
515 @cindex handlers | 515 @cindex handlers |
516 @cindex status codes | 516 @cindex status codes |
517 The IRC protocol specifies how certain events are signalled from server | 517 The IRC protocol specifies how certain events are signaled from server |
518 to client. These events have numbers and are dealt with using so-called | 518 to client. These events have numbers and are dealt with using so-called |
519 handlers. You can override existing handlers by exploiting the naming | 519 handlers. You can override existing handlers by exploiting the naming |
520 convention adopted for @code{rcirc}. | 520 convention adopted for @code{rcirc}. |
521 | 521 |
522 Here's how to stop @code{rcirc} from printing @code{/away} messages. | 522 Here's how to stop @code{rcirc} from printing @code{/away} messages. |
564 (lambda () | 564 (lambda () |
565 (set (make-local-variable 'scroll-conservatively) | 565 (set (make-local-variable 'scroll-conservatively) |
566 8192))) | 566 8192))) |
567 @end example | 567 @end example |
568 | 568 |
569 @xref{Scrolling, , Scrolling convervatively, emacs, The GNU Emacs | 569 @xref{Scrolling, , Scrolling conservatively, emacs, The GNU Emacs |
570 Manual}, for details. | 570 Manual}, for details. |
571 | 571 |
572 @node Changing the time stamp format, Defining a new command, Scrolling conservatively, Hacking and Tweaking | 572 @node Changing the time stamp format, Defining a new command, Scrolling conservatively, Hacking and Tweaking |
573 @section Changing the time stamp format | 573 @section Changing the time stamp format |
574 @cindex time stamp | 574 @cindex time stamp |