From: pent <pent@aparamon.msk.ru>
To: emacs-pretest-bug@gnu.org
Cc: rfrancoise@debian.org
Subject: bug#1960: 23.0.60; A combination of PC Selection, Visual Lines and emacsclient redefines C-backspace
Date: Tue, 20 Jan 2009 00:22:57 +0300 [thread overview]
Message-ID: <E1LP1aD-0003Js-64@neo.paramonovs> (raw)
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@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
next reply other threads:[~2009-01-19 21:22 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <87ab9c7bkt.fsf@cyd.mit.edu>
2009-01-19 21:22 ` pent [this message]
2009-01-27 20:20 ` bug#1960: marked as done (23.0.60; A combination of PC Selection, Visual Lines and emacsclient redefines C-backspace ) Emacs bug Tracking System
2009-01-20 3:40 23.0.60; A combination of PC Selection, Visual Lines and emacsclient redefines C-backspace Chong Yidong
2009-01-20 16:18 ` Dan Nicolaescu
2009-01-21 16:02 ` Chong Yidong
2009-01-22 6:21 ` bug#1960: " Dan Nicolaescu
2009-01-21 16:02 ` Chong Yidong
2009-01-20 16:18 ` Dan Nicolaescu
-- strict thread matches above, loose matches on Subject: below --
2009-01-20 3:40 Chong Yidong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1LP1aD-0003Js-64@neo.paramonovs \
--to=pent@aparamon.msk.ru \
--cc=1960@emacsbugs.donarmstrong.com \
--cc=cmr.Pent@gmail.com \
--cc=emacs-pretest-bug@gnu.org \
--cc=rfrancoise@debian.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.