5 Nov 2009 02:05
bug#4871: 23.1.50; Quit: "empty or unsupported pasteboard type"
Leo <sdl.web <at> gmail.com>
2009-11-05 01:05:30 GMT
2009-11-05 01:05:30 GMT
Please describe exactly what actions triggered the bug and the precise symptoms of the bug: 1. Emacs -q 2. (setq save-interprogram-paste-before-kill t) 3. Highlight some region and hit M-w You should hear a beap and then a message in the echo area `` Quit: "empty or unsupported pasteboard type" ''. In GNU Emacs 23.1.50.1 (i386-apple-darwin9.8.0, NS apple-appkit-949.54) of 2009-09-22 on neutron.local Windowing system distributor `Apple', version 10.3.949 configured using `configure '--with-ns'' 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: nil value of $XMODIFIERS: nil locale-coding-system: nil default enable-multibyte-characters: t Leo(Continue reading)
Would the patch below make sense? After all, at that point we've
already checked we're visiting a file, there's no backend and we're not
in vc-dir-mode, so a message like "No fileset is available here" is
probably never right.
Stefan
=== modified file 'lisp/vc.el'
--- lisp/vc.el 2009-10-24 18:33:25 +0000
+++ lisp/vc.el 2009-11-05 02:00:24 +0000
<at> <at> -922,7 +922,7 <at> <at>
nil)
(list (vc-backend-for-registration (buffer-file-name))
(list buffer-file-name))))
- (t (error "No fileset is available here")))))
+ (t (error "File is not under version control")))))
(defun vc-ensure-vc-buffer ()
"Make sure that the current buffer visits a version-controlled file."
RSS Feed