=== modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2012-08-10 21:03:10 +0000 +++ lisp/ChangeLog 2012-08-10 21:53:48 +0000 @@ -1,3 +1,8 @@ +2012-08-10 Christopher Schmidt + + * help-fns.el (help-fns--key-bindings): Abbreviate non-symbol + remap targets with ?? (Bug#). + 2012-08-10 Stefan Monnier * emacs-lisp/rx.el (rx-constituents): Don't define as constant. === modified file 'lisp/help-fns.el' --- lisp/help-fns.el 2012-08-06 21:05:48 +0000 +++ lisp/help-fns.el 2012-08-10 21:28:18 +0000 @@ -398,7 +398,7 @@ (push key non-modified-keys))) (when remapped (princ "Its keys are remapped to `") - (princ (symbol-name remapped)) + (princ (if (symbolp remapped) (symbol-name remapped) "??")) (princ "'.\n")) (when keys