diff options
| author | Paul Eggert | 2015-03-03 14:35:41 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-03-03 14:35:41 -0800 |
| commit | 2c82deee7fbb951a90ed3246350fbf9390af038a (patch) | |
| tree | 465aaf0fdaefea778317ab1ed5c48400f223b596 /doc | |
| parent | 6eab3936c71951e304f13b69ad2e835ddaf9f2f4 (diff) | |
| parent | c0ba5908b117170995df36e839a087af7c5f79db (diff) | |
| download | emacs-2c82deee7fbb951a90ed3246350fbf9390af038a.tar.gz emacs-2c82deee7fbb951a90ed3246350fbf9390af038a.zip | |
Merge from origin/emacs-24
c0ba590 Fix vertical-motion and posn-at-point when word-wrap is
a323b93 Better multi-line input support in comint.el
008a04a todo-mode.el: Restore point on setting item done (Bug#19727)
9615c0d doc/misc/erc.texi: fix typo
c648717 Update ERC docs and update MAINTANERS to include myself
d825f66 Fix filling circle/ellipse in Artist Mode (Bug#19763)
Conflicts:
admin/ChangeLog
doc/misc/ChangeLog
doc/misc/erc.texi
lisp/ChangeLog
src/ChangeLog
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/ChangeLog | 7 | ||||
| -rw-r--r-- | doc/misc/erc.texi | 10 |
2 files changed, 8 insertions, 9 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 4e9c119379d..c00cb2f722a 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2015-03-03 Kelvin White <kwhite@gnu.org> | ||
| 2 | |||
| 3 | * erc.texi (Advanced Usage, Options): Add descriptions and examples | ||
| 4 | for erc-format-nick-function and erc-rename-buffers options. | ||
| 5 | (Connecting): fix typo | ||
| 6 | |||
| 7 | 2015-03-03 Michael Albinus <michael.albinus@gmx.de> | ||
| 1 | 2015-03-02 Daniel Colascione <dancol@dancol.org> | 8 | 2015-03-02 Daniel Colascione <dancol@dancol.org> |
| 2 | 9 | ||
| 3 | * cl.texi (Iteration Clauses): Mention iterator support. | 10 | * cl.texi (Iteration Clauses): Mention iterator support. |
diff --git a/doc/misc/erc.texi b/doc/misc/erc.texi index aaa88ce803b..2f4ffae87c1 100644 --- a/doc/misc/erc.texi +++ b/doc/misc/erc.texi | |||
| @@ -667,14 +667,6 @@ your Emacs configuration file. Everything after the @code{(require | |||
| 667 | @lisp | 667 | @lisp |
| 668 | ;;; Sample ERC configuration | 668 | ;;; Sample ERC configuration |
| 669 | 669 | ||
| 670 | ;; Add the ERC directory to load path -- you don't need this if you are | ||
| 671 | ;; using the version of ERC that comes with Emacs | ||
| 672 | (add-to-list 'load-path "~/elisp/erc") | ||
| 673 | |||
| 674 | ;; Load ERC -- again, you don't need this if you are using the version | ||
| 675 | ;; of ERC that comes with Emacs | ||
| 676 | (require 'erc) | ||
| 677 | |||
| 678 | ;; Load authentication info from an external source. Put sensitive | 670 | ;; Load authentication info from an external source. Put sensitive |
| 679 | ;; passwords and the like in here. | 671 | ;; passwords and the like in here. |
| 680 | (load "~/.emacs.d/.erc-auth") | 672 | (load "~/.emacs.d/.erc-auth") |
| @@ -724,7 +716,7 @@ stuff, to the current ERC buffer." | |||
| 724 | (setq erc-autojoin-channels-alist '(("freenode.net" "#emacs" "#erc"))) | 716 | (setq erc-autojoin-channels-alist '(("freenode.net" "#emacs" "#erc"))) |
| 725 | 717 | ||
| 726 | ;; Rename server buffers to reflect the current network name instead | 718 | ;; Rename server buffers to reflect the current network name instead |
| 727 | ;; of IP:PORT. (e.g. "freenode" instead of "84.240.3.129:6667"). This | 719 | ;; of SERVER:PORT. (e.g. "freenode" instead of "irc.freenode.net:6667"). This |
| 728 | ;; is useful when using a bouncer like ZNC where you have multiple | 720 | ;; is useful when using a bouncer like ZNC where you have multiple |
| 729 | ;; connections to the same server. | 721 | ;; connections to the same server. |
| 730 | (setq erc-rename-buffers t) | 722 | (setq erc-rename-buffers t) |