diff options
author | Michael Olson <mwolson@gnu.org> | 2008-02-23 18:58:56 +0000 |
---|---|---|
committer | Michael Olson <mwolson@gnu.org> | 2008-02-23 18:58:56 +0000 |
commit | 2a927019fa311d838d972f2a29a30617d9a547c5 (patch) | |
tree | 6c62846dafe2f8eba9dd5006095a83308bb41f59 /lisp/erc/erc.el | |
parent | 0103690ed263ca1c44c45dac2fa94405923f5be1 (diff) | |
download | emacs-2a927019fa311d838d972f2a29a30617d9a547c5.tar.gz |
ERC: Sync from upstream.
Diffstat (limited to 'lisp/erc/erc.el')
-rw-r--r-- | lisp/erc/erc.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index e98c9d29baa..6cbf5f0b7a0 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -1110,6 +1110,7 @@ which the local user typed." (define-key map "\C-c\C-r" 'erc-remove-text-properties-region) (define-key map "\C-c\C-t" 'erc-set-topic) (define-key map "\C-c\C-u" 'erc-kill-input) + (define-key map "\C-c\C-x" 'erc-quit-server) (define-key map "\M-\t" 'ispell-complete-word) (define-key map "\t" 'erc-complete-word) @@ -1168,7 +1169,8 @@ See the variable `erc-command-indicator'." :group 'erc-faces) (defface erc-notice-face - (if (featurep 'xemacs) + (if (or (featurep 'xemacs) + (< emacs-major-version 22)) '((t (:bold t :foreground "blue"))) '((((class color) (min-colors 88)) (:bold t :foreground "SlateBlue")) @@ -4026,7 +4028,7 @@ and as second argument the event parsed as a vector." (string= target (erc-current-nick))) (not (erc-get-buffer query proc)) (not (erc-is-message-ctcp-and-not-action-p msg)) - (let ((erc-join-buffer erc-auto-query)) + (let ((erc-query-display erc-auto-query)) (erc-cmd-QUERY query)) nil)))) |