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
5d0ae729
Commit
5d0ae729
authored
May 12, 1997
by
Kenichi Handa
Browse files
(tibetan-pre-write-conversion): Make it work
for the case the arg FROM is a string.
parent
1d1180f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lisp/language/tibet-util.el
lisp/language/tibet-util.el
+6
-2
No files found.
lisp/language/tibet-util.el
View file @
5d0ae729
...
...
@@ -444,9 +444,13 @@ See also docstring of the function tibetan-compose-region."
(work-buf (get-buffer-create "
*tibetan-work*
"
)))
(
set-buffer
work-buf
)
(
erase-buffer
)
(
insert-buffer-substring
old-buf
from
to
)
(
if
(
stringp
from
)
(
insert
from
)
(
insert-buffer-substring
old-buf
from
to
))
(
if
(
not
tibetan-decomposed-temp
)
(
tibetan-decompose-region
(
point-min
)
(
point-max
)))))
(
tibetan-decompose-region
(
point-min
)
(
point-max
)))
;; Should return nil as annotations.
nil
))
(
provide
'language/tibet-util
)
...
...
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