Changeset 4166 for trunk/lisp/select.el
- Timestamp:
- 09/18/06 20:48:14 (2 years ago)
- Files:
-
- trunk/lisp/select.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/select.el
r4037 r4166 224 224 225 225 ((eq type 'UTF8_STRING) 226 (setq str (encode-coding-string str 'utf-8))) 227 226 (let ((charsets (find-charset-string str))) 227 (if (or (memq 'eight-bit-control charsets) 228 (memq 'eight-bit-graphic charsets)) 229 (setq type 'STRING) 230 (setq str (encode-coding-string str 'utf-8))))) 228 231 (t 229 232 (error "Unknow selection type: %S" type))
