aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-05-03 21:46:00 +0000
committerLuc Teirlinck2004-05-03 21:46:00 +0000
commitb36ee2a6ec604eb6a6c65d8c10c4ca1ad477c60e (patch)
tree7c2b94536361a1655762bf2ca9ee199c05592aff
parente43a720fd668e75234567fe43363f647ce5b8515 (diff)
downloademacs-b36ee2a6ec604eb6a6c65d8c10c4ca1ad477c60e.tar.gz
emacs-b36ee2a6ec604eb6a6c65d8c10c4ca1ad477c60e.zip
(xselect-convert-to-string): Move comment to intended line.
-rw-r--r--lisp/select.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/select.el b/lisp/select.el
index d6a18fee706..c095ea50c44 100644
--- a/lisp/select.el
+++ b/lisp/select.el
@@ -176,8 +176,8 @@ Cut buffers are considered obsolete; you should use selections instead."
176 (if coding 176 (if coding
177 (setq coding (coding-system-base coding)) 177 (setq coding (coding-system-base coding))
178 (setq coding 'raw-text)) 178 (setq coding 'raw-text))
179 ;; Suppress producing escape sequences for compositions.
180 (let ((inhibit-read-only t)) 179 (let ((inhibit-read-only t))
180 ;; Suppress producing escape sequences for compositions.
181 (remove-text-properties 0 (length str) '(composition nil) str) 181 (remove-text-properties 0 (length str) '(composition nil) str)
182 (cond 182 (cond
183 ((eq type 'TEXT) 183 ((eq type 'TEXT)