From e2cb56be555404f08bbe0626c1b598377f8b7770 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sat, 23 Aug 2008 15:50:06 +0000 Subject: [PATCH] (x-gtk-map-stock): Don't let the tool bar destroy match data in process filters. --- lisp/term/x-win.el | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 1cfdeaf084b..a8813aeb917 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -1669,16 +1669,17 @@ If you don't want stock icons, set the variable to nil." (defun x-gtk-map-stock (file) "Map icon with file name FILE to a Gtk+ stock name, using `x-gtk-stock-map'." (if (stringp file) - (let* ((file-sans (file-name-sans-extension file)) - (key (and (string-match "/\\([^/]+/[^/]+/[^/]+$\\)" file-sans) - (match-string 1 file-sans))) - (value)) - (mapc (lambda (elem) - (let ((assoc (if (symbolp elem) (symbol-value elem) elem))) - (or value (setq value (assoc-string (or key file-sans) - assoc))))) - icon-map-list) - (and value (cdr value))) + (save-match-data + (let* ((file-sans (file-name-sans-extension file)) + (key (and (string-match "/\\([^/]+/[^/]+/[^/]+$\\)" file-sans) + (match-string 1 file-sans))) + (value)) + (mapc (lambda (elem) + (let ((assoc (if (symbolp elem) (symbol-value elem) elem))) + (or value (setq value (assoc-string (or key file-sans) + assoc))))) + icon-map-list) + (and value (cdr value)))) nil)) (provide 'x-win) -- 2.39.5