2001-12-27 Richard M. Stallman <rms@gnu.org>
+ * international/mule-diag.el (describe-char-after):
+ Describe the text properties of the char after point.
+
* help.el (describe-key): Doc fix.
2001-12-26 Markus Rost <rost@math.ohio-state.edu>
(error "No character at point"))
(let* ((char (char-after pos))
(charset (char-charset char))
+ (props (text-properties-at pos))
(composition (find-composition (point) nil nil t))
(composed (if composition (buffer-substring (car composition)
(nth 1 composition))))
" ")
").\n"
"See the variable `reference-point-alist' for the meaning of the rule.\n")))
+ (if props
+ (insert "\nText properties\n"))
+ (while props
+ (insert (format " %s: %s" (car props) (cadr props)))
+ (setq props (cddr props)))
))))
\f