comparison lisp/help.el @ 19243:f8f590160844

(describe-key): Don't put a colon after the command name.
author Richard M. Stallman <rms@gnu.org>
date Sat, 09 Aug 1997 07:37:02 +0000
parents 3e0e9b7e2307
children f6f7ae045fe3
comparison
equal deleted inserted replaced
19242:a7d44588be35 19243:f8f590160844
280 (princ (key-description key)) 280 (princ (key-description key))
281 (if (windowp window) 281 (if (windowp window)
282 (princ " at that spot")) 282 (princ " at that spot"))
283 (princ " runs the command ") 283 (princ " runs the command ")
284 (prin1 defn) 284 (prin1 defn)
285 (princ ":\n") 285 (princ "\n")
286 (let ((doc (documentation defn))) 286 (let ((doc (documentation defn)))
287 (if doc 287 (if doc
288 (progn (terpri) 288 (progn (terpri)
289 (princ doc)) 289 (princ doc))
290 (princ "not documented"))) 290 (princ "not documented")))