From 4ead48d7c5f13748750c0aa7319d5b501a8ed947 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 20 May 2002 18:48:58 +0000 Subject: [PATCH] (cpp-choose-symbol): Don't cons unnecessarily. --- lisp/progmodes/cpp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/cpp.el b/lisp/progmodes/cpp.el index 743f5545361..6e4c8d1f457 100644 --- a/lisp/progmodes/cpp.el +++ b/lisp/progmodes/cpp.el @@ -676,7 +676,7 @@ BRANCH should be either nil (false branch), t (true branch) or 'both." ;; Choose a symbol if called from keyboard, otherwise use the one clicked on. (if cpp-button-event cpp-callback-data - (completing-read "Symbol: " (mapcar 'list cpp-edit-symbols) nil t))) + (completing-read "Symbol: " cpp-edit-symbols nil t))) (defun cpp-choose-branch () ;; Choose a branch, either nil, t, or both. -- 2.39.5