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
2a83421c
Commit
2a83421c
authored
Jan 06, 1995
by
Richard M. Stallman
Browse files
(what-cursor-position): Show char in decimal, hex, octal.
parent
34c31301
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/simple.el
lisp/simple.el
+4
-4
No files found.
lisp/simple.el
View file @
2a83421c
...
...
@@ -374,10 +374,10 @@ and the greater of them is not at the start of a line."
(
message
"point=%d of %d(%d%%) column %d %s"
pos
total
percent
col
hscroll
))
(
if
(
or
(
/=
beg
1
)
(
/=
end
(
1+
total
)))
(
message
"Char: %s (0%o) point=%d of %d(%d%%) <%d - %d> column %d %s"
(
single-key-description
char
)
char
pos
total
percent
beg
end
col
hscroll
)
(
message
"Char: %s (0%o) point=%d of %d(%d%%) column %d %s"
(
single-key-description
char
)
char
pos
total
percent
col
hscroll
)))))
(
message
"Char: %s (0%o
, %d, 0x%x
) point=%d of %d(%d%%) <%d - %d> column %d %s"
(
single-key-description
char
)
char
char
char
pos
total
percent
beg
end
col
hscroll
)
(
message
"Char: %s (0%o
, %d, 0x%x
) point=%d of %d(%d%%) column %d %s"
(
single-key-description
char
)
char
char
char
pos
total
percent
col
hscroll
)))))
(
defun
fundamental-mode
()
"Major mode not specialized for anything in particular.
...
...
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