Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a228c48e
Commit
a228c48e
authored
Dec 28, 2001
by
Richard M. Stallman
Browse files
(describe-char-after): Describe the text properties of the char after point.
parent
0e270d15
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/international/mule-diag.el
lisp/international/mule-diag.el
+6
-0
No files found.
lisp/ChangeLog
View file @
a228c48e
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>
...
...
lisp/international/mule-diag.el
View file @
a228c48e
...
...
@@ -528,6 +528,7 @@ which font is being used for displaying the character."
(
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
))))
...
...
@@ -620,6 +621,11 @@ which font is being used for displaying the character."
" "
)
").\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
)))
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment