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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
f0d16a7f
Commit
f0d16a7f
authored
Dec 15, 1999
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(what-cursor-position): Show "(composed)" if the
character is composed.
parent
9d4d60c1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
16 deletions
+9
-16
lisp/simple.el
lisp/simple.el
+9
-16
No files found.
lisp/simple.el
View file @
f0d16a7f
...
@@ -513,33 +513,26 @@ addition, the encoding is fully shown."
...
@@ -513,33 +513,26 @@ addition, the encoding is fully shown."
"..."
"..."
(
concat
(
concat
(
encoded-string-description
encoded
coding
)
(
encoded-string-description
encoded
coding
)
(
if
(
cmpcharp
char
)
"..."
""
))))
(
if
(
nth
2
(
find-composition
(
point
)))
" (composed)"
""
))))
(
format
"(0%o, %d, 0x%x)"
char
char
char
))))
(
format
"(0%o, %d, 0x%x)"
char
char
char
))))
(
if
detail
(
if
detail
;; We show the detailed information of CHAR.
;; We show the detailed information of CHAR.
(
let
((
internal
(
if
(
cmpcharp
char
)
;; For a composite character, we show the
;; components only.
(
concat
"(composed \""
(
decompose-composite-char
char
)
"\")"
)
(
split-char
char
))))
(
message
"Char: %s %s %s"
(
message
"Char: %s %s %s"
(
if
(
<
char
256
)
(
if
(
<
char
256
)
(
single-key-description
char
)
(
single-key-description
char
)
(
buffer-substring
(
point
)
(
1+
(
point
))))
(
buffer-substring-no-properties
(
point
)
(
1+
(
point
))))
encoding-msg
internal
))
encoding-msg
(
split-char
char
))
(
if
(
or
(
/=
beg
1
)
(
/=
end
(
1+
total
)))
(
if
(
or
(
/=
beg
1
)
(
/=
end
(
1+
total
)))
(
message
"Char: %s %s point=%d of %d(%d%%) <%d - %d> column %d %s"
(
message
"Char: %s %s point=%d of %d(%d%%) <%d - %d> column %d %s"
(
if
(
<
char
256
)
(
if
(
<
char
256
)
(
single-key-description
char
)
(
single-key-description
char
)
(
buffer-substring
(
point
)
(
1+
(
point
))))
(
buffer-substring
-no-properties
(
point
)
(
1+
(
point
))))
encoding-msg
pos
total
percent
beg
end
col
hscroll
)
encoding-msg
pos
total
percent
beg
end
col
hscroll
)
(
message
"Char: %s %s point=%d of %d(%d%%) column %d %s"
(
message
"Char: %s %s point=%d of %d(%d%%) column %d %s"
(
if
(
<
char
256
)
(
if
(
<
char
256
)
(
single-key-description
char
)
(
single-key-description
char
)
(
buffer-substring
(
point
)
(
1+
(
point
))))
(
buffer-substring
-no-properties
(
point
)
(
1+
(
point
))))
encoding-msg
pos
total
percent
col
hscroll
)))))))
encoding-msg
pos
total
percent
col
hscroll
)))))))
(
defvar
read-expression-map
(
cons
'keymap
minibuffer-local-map
)
(
defvar
read-expression-map
(
cons
'keymap
minibuffer-local-map
)
...
...
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