From: Richard M. Stallman Date: Wed, 9 Apr 2003 01:33:27 +0000 (+0000) Subject: (map-y-or-n-p): When formatting chars in ACTION-ALIST, X-Git-Tag: ttn-vms-21-2-B4~10585 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7963c455646b0c0e8946bfaed549b11c86415a20;p=emacs.git (map-y-or-n-p): When formatting chars in ACTION-ALIST, use single-key-description. --- diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index 21e6aec67df..59007c1f21d 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el @@ -207,8 +207,9 @@ ESC or `q' to exit;\n" objects) (mapconcat (function (lambda (elt) - (format "%c to %s" - (nth 0 elt) + (format "%s to %s" + (single-key-description + (nth 0 elt)) (nth 2 elt)))) action-alist ";\n")