diff options
Diffstat (limited to 'lisp/term/x-win.el')
-rw-r--r-- | lisp/term/x-win.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index c966fc561cb..1ec80d5c277 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -1447,7 +1447,8 @@ Request data types in the order specified by `x-select-request-type'." (define-key special-event-map [drag-n-drop] 'x-dnd-handle-drag-n-drop-event) (defcustom x-gtk-stock-map - (mapcar 'purecopy-cons + (mapcar (lambda (arg) + (cons (purecopy (car arg)) (purecopy (cdr arg)))) '( ("etc/images/new" . "gtk-new") ("etc/images/open" . "gtk-open") |