]> git.eshelyaron.com Git - emacs.git/commitdiff
(what-cursor-position): Use describe-char.
authorRichard M. Stallman <rms@gnu.org>
Mon, 17 Jun 2002 16:15:09 +0000 (16:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 17 Jun 2002 16:15:09 +0000 (16:15 +0000)
lisp/simple.el

index 9f01cef9f66865e5fe66121dc00a65d066acaba0..14d1670b6ba67330f21c9128d3b2bbbea9f9724b 100644 (file)
@@ -530,7 +530,7 @@ code is shown in hex.  If the character is encoded into more than one
 byte, just \"...\" is shown.
 
 In addition, with prefix argument, show details about that character
-in *Help* buffer.  See also the command `describe-char-after'."
+in *Help* buffer.  See also the command `describe-char'."
   (interactive "P")
   (let* ((char (following-char))
         (beg (point-min))
@@ -570,7 +570,7 @@ in *Help* buffer.  See also the command `describe-char-after'."
                  (format "(0%o, %d, 0x%x)" char char char))))
        (if detail
            ;; We show the detailed information about CHAR.
-           (describe-char-after (point)))
+           (describe-char (point)))
        (if (or (/= beg 1) (/= end (1+ total)))
            (message "Char: %s %s point=%d of %d (%d%%) <%d - %d> column %d %s"
                     (if (< char 256)