+2005-06-10 Kenichi Handa <handa@m17n.org>
+
+ * term/x-win.el (x-clipboard-yank): Remove condition-case
+ wrapping.
+
+2005-06-11 Kenichi Handa <handa@m17n.org>
+
+ * add-log.el (change-log-font-lock-keywords): Make the regexp for
+ date lines stricter.
+
2005-06-10 Zhang Wei <id.brep@gmail.com> (tiny change)
* term/x-win.el (x-clipboard-yank): Use x-selection-value instead
ctext
utf8)))))
+;; Get a selection value of type TYPE by calling x-get-selection with
+;; an appropiate DATA-TYPE argument decidd by `x-select-request-type'.
+;; The return value is already decoded. If x-get-selection causes an
+;; error, this function return nil.
+
(defun x-selection-value (type)
(let (text)
(cond ((null x-select-request-type)
(defun x-clipboard-yank ()
"Insert the clipboard contents, or the last stretch of killed text."
(interactive)
- (let ((clipboard-text
- (condition-case nil
- (x-selection-value 'CLIPBOARD)
- (error nil)))
+ (let ((clipboard-text (x-selection-value 'CLIPBOARD))
(x-select-enable-clipboard t))
(if (and clipboard-text (> (length clipboard-text) 0))
(kill-new clipboard-text))