Package: emacs;
Reported by: cmr.Pent <at> gmail.com
Date: Mon, 19 Jan 2009 21:30:03 UTC
Severity: normal
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):
From: pent <pent <at> aparamon.msk.ru> To: emacs-pretest-bug <at> gnu.org Cc: rfrancoise <at> debian.org Subject: 23.0.60; A combination of PC Selection, Visual Lines and emacsclient redefines C-backspace Date: Tue, 20 Jan 2009 00:22:57 +0300
1) Run emacs 2) Hit C-h k C-backspace It replies (expected): <C-backspace> runs the command backward-kill-word, which is an interactive compiled Lisp function. It is bound to <C-backspace>. (backward-kill-word arg) Kill characters backward until encountering the beginning of a word. With argument arg, do this that many times. 3) Exit emacs 4) Run emacs --daemon 5) Run emacsclient -c 6) Hit C-h k C-backspace It tells (unexpected): <C-backspace> runs the command kill-visual-line, which is an interactive compiled Lisp function. It is bound to <deleteline>, <C-backspace>, C-k. (kill-visual-line &optional arg) Kill the rest of the visual line. If there are only whitespace characters there, kill through the newline as well. ... The problem is not reproduced with emacs -Q. However, I could trace down the problematic line in my .emacs (see listing below). The problem is triggered by '(pc-selection-mode t) statement. Please note that *do* like the [other] effects of PC Selection and Visual Lines modes and I've turned them on on purpose. My .emacs customizations: ;; --- Customized --- (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(TeX-PDF-mode t) '(TeX-output-view-style (quote (("^dvi$" ("^landscape$" "^pstricks$\\|^pst-\\|^psfrag$") "%(o?)dvips -t landscape %d -o && gv %f") ("^dvi$" "^pstricks$\\|^pst-\\|^psfrag$" "%(o?)dvips %d -o && gv %f") ("^dvi$" ("^\\(?:a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4\\)$" "^landscape$") "%(o?)xdvi %dS -paper a4r -s 0 %d") ("^dvi$" "^\\(?:a4\\(?:dutch\\|paper\\|wide\\)\\|sem-a4\\)$" "%(o?)xdvi %dS -paper a4 %d") ("^dvi$" ("^\\(?:a5\\(?:comb\\|paper\\)\\)$" "^landscape$") "%(o?)xdvi %dS -paper a5r -s 0 %d") ("^dvi$" "^\\(?:a5\\(?:comb\\|paper\\)\\)$" "%(o?)xdvi %dS -paper a5 %d") ("^dvi$" "^b5paper$" "%(o?)xdvi %dS -paper b5 %d") ("^dvi$" "^letterpaper$" "%(o?)xdvi %dS -paper us %d") ("^dvi$" "^legalpaper$" "%(o?)xdvi %dS -paper legal %d") ("^dvi$" "^executivepaper$" "%(o?)xdvi %dS -paper 7.25x10.5in %d") ("^dvi$" "." "%(o?)xdvi %dS %d") ("^pdf$" "." "evince %o") ("^html?$" "." "firefox %o")))) '(TeX-save-query nil) '(case-fold-search t) '(column-number-mode t) '(csv-align-style (quote right)) '(current-language-environment "UTF-8") '(debian-bug-From-address "Andrey <cmr.Pent <at> gmail.com>") '(debian-bug-use-From-address t) '(dictionary-create-buttons nil) '(dictionary-default-dictionary "ru-en--en-ru") '(dictionary-server "dict.dvo.ru") '(dired-listing-switches "-l --group-directories-first") '(ediff-split-window-function (quote split-window-horizontally)) '(ediff-window-setup-function (quote ediff-setup-windows-plain)) '(global-visual-line-mode t) '(gnus-select-method (quote (nntp "news.gmane.org"))) '(ibuffer-enable t) '(ibuffer-never-show-predicates (quote ("^\\*.*")) nil (ibuf-ext)) '(kill-whole-line t) '(list-directory-brief-switches "-CF --group-directories-first") '(list-directory-verbose-switches "-l --group-directories-first") '(mouse-wheel-mode t) '(org-insert-mode-line-in-empty-file t) '(pc-selection-mode t) '(scroll-conservatively 50) '(scroll-margin 5) '(scroll-preserve-screen-position t) '(show-paren-mode t) '(svn-status-default-export-directory "~/study") '(svn-status-preserve-window-configuration t) '(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify))) '(tool-bar-mode nil) '(truncate-lines t) '(use-dialog-box nil) '(w3m-coding-system (quote utf-8)) '(w3m-default-coding-system (quote utf-8)) '(w3m-file-coding-system (quote utf-8)) '(w3m-file-name-coding-system (quote utf-8)) '(w3m-terminal-coding-system (quote utf-8)) '(w3m-use-cookies t) '(x-select-enable-clipboard t) '(x-select-request-type (quote UTF8_STRING) t)) I'm ready to provide any additional info, Andrey In GNU Emacs 23.0.60.1 (i486-pc-linux-gnu, GTK+ Version 2.12.11) of 2009-01-18 on elegiac, modified by Debian (emacs-snapshot package, version 1:20090118-1) Windowing system distributor `The X.Org Foundation', version 11.0.10402000 configured using `configure '--build' 'i486-linux-gnu' '--host' 'i486-linux-gnu' '--prefix=/usr' '--sharedstatedir=/var/lib' '--libexecdir=/usr/lib' '--localstatedir=/var' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--with-pop=yes' '--enable-locallisppath=/etc/emacs-snapshot:/etc/emacs:/usr/local/share/emacs/23.0.60/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/23.0.60/site-lisp:/usr/share/emacs/site-lisp' '--with-x=yes' '--with-x-toolkit=gtk' 'build_alias=i486-linux-gnu' 'host_alias=i486-linux-gnu' 'CFLAGS=-DDEBIAN -DSITELOAD_PURESIZE_EXTRA=5000 -g -O2' 'LDFLAGS=-g -Wl,--as-needed' 'CPPFLAGS='' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: ru_RU.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default-enable-multibyte-characters: t Major mode: Emacs-Lisp Minor modes in effect: delete-selection-mode: t show-paren-mode: t pc-selection-mode: t shell-dirtrack-mode: t tooltip-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t global-auto-composition-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t column-number-mode: t line-number-mode: t global-visual-line-mode: t visual-line-mode: t transient-mark-mode: t
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.