aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeniz Dogan2011-06-28 12:18:02 +0200
committerDeniz Dogan2011-06-28 12:18:02 +0200
commit3da13bb9769604e73ae2e31d9f8f64e319c455c7 (patch)
tree19a674d641c90ed1e8687b6d780fddd3f5738ba1
parenta08cc025e53299a2c72c1b4d5438fff753e72167 (diff)
downloademacs-3da13bb9769604e73ae2e31d9f8f64e319c455c7.tar.gz
emacs-3da13bb9769604e73ae2e31d9f8f64e319c455c7.zip
* doc/misc/rcirc.texi (Configuration): Bug-fix: `rcirc-default-user-full-name' is now `rcirc-default-full-name'. Reported by Elias Pipping <pipping@exherbo.org>.
-rw-r--r--doc/misc/ChangeLog6
-rw-r--r--doc/misc/rcirc.texi8
2 files changed, 10 insertions, 4 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 8645f7b82d6..2e0e28e9827 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,9 @@
12011-06-28 Deniz Dogan <deniz@dogan.se>
2
3 * rcirc.texi (Configuration): Bug-fix:
4 `rcirc-default-user-full-name' is now `rcirc-default-full-name'.
5 Reported by Elias Pipping <pipping@exherbo.org>.
6
12011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org> 72011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 8
3 * gnus.texi (Summary Mail Commands): Document 9 * gnus.texi (Summary Mail Commands): Document
diff --git a/doc/misc/rcirc.texi b/doc/misc/rcirc.texi
index c2b6867c419..3e9ee928822 100644
--- a/doc/misc/rcirc.texi
+++ b/doc/misc/rcirc.texi
@@ -509,8 +509,8 @@ This variable contains the default user name to report to the server.
509It defaults to the login name returned by @code{user-login-name}, just 509It defaults to the login name returned by @code{user-login-name}, just
510like @code{rcirc-default-nick}. 510like @code{rcirc-default-nick}.
511 511
512@item rcirc-default-user-full-name 512@item rcirc-default-full-name
513@vindex rcirc-default-user-full-name 513@vindex rcirc-default-full-name
514@cindex full name 514@cindex full name
515@cindex real name 515@cindex real name
516@cindex surname 516@cindex surname
@@ -519,7 +519,7 @@ to the name returned by @code{user-full-name}. If you want to hide
519your full name, you might want to set it to some pseudonym. 519your full name, you might want to set it to some pseudonym.
520 520
521@example 521@example
522(setq rcirc-default-user-full-name "Curious Minds Want To Know") 522(setq rcirc-default-full-name "Curious Minds Want To Know")
523@end example 523@end example
524 524
525@item rcirc-authinfo 525@item rcirc-authinfo
@@ -926,7 +926,7 @@ The real answer, therefore, is a @code{/reconnect} command:
926 (delete-process process) 926 (delete-process process)
927 (rcirc-connect server port nick 927 (rcirc-connect server port nick
928 rcirc-default-user-name 928 rcirc-default-user-name
929 rcirc-default-user-full-name 929 rcirc-default-full-name
930 channels)))) 930 channels))))
931@end smallexample 931@end smallexample
932 932