# HG changeset patch # User Richard M. Stallman # Date 1049852007 0 # Node ID e907858b9aef6ed725c36bf5845ca98394e6e00f # Parent 7c83c5770cb66ce7f93911aa71a0690313d1f8bf (map-y-or-n-p): When formatting chars in ACTION-ALIST, use single-key-description. diff -r 7c83c5770cb6 -r e907858b9aef lisp/map-ynp.el --- a/lisp/map-ynp.el Wed Apr 09 01:32:45 2003 +0000 +++ b/lisp/map-ynp.el Wed Apr 09 01:33:27 2003 +0000 @@ -207,8 +207,9 @@ 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")