Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lyskom-elisp-client
lyskom-elisp-client
Commits
beee505a
Commit
beee505a
authored
Nov 19, 1999
by
David Byers
Browse files
More 20.3 patches
parent
062a84e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/ChangeLog
View file @
beee505a
1999-11-19 David Byers <davby@
anton9
.ida.liu.se>
1999-11-19 David Byers <davby@
sen2
.ida.liu.se>
* lyskom-rest.el (lyskom-filter): Explicitly insert unibyte string
representation. Gnu Emacs 20.3 compat kluge.
* utilities.el (lyskom-looking-at): New function (Gnu Emacs 20.3
bug workaround.)
...
...
src/lyskom-rest.el
View file @
beee505a
...
...
@@ -3007,7 +3007,7 @@ If MEMBERSHIPs prioriy is 0, it always returns nil."
(save-excursion
(set-buffer (get-buffer-create "*kom*-replies"))
(goto-char (point-max))
(princ output (current-buffer))))
(princ
(string-as-unibyte
output
)
(current-buffer))))
(if lyskom-debug-communications-to-buffer
(if (not lyskom-debug-what-i-am-doing)
...
...
@@ -3017,7 +3017,7 @@ If MEMBERSHIPs prioriy is 0, it always returns nil."
(lyskom-debug-insert proc "From " output)))
(set-buffer (process-buffer proc))
(princ output lyskom-unparsed-marker)
(princ
(string-as-unibyte
output
)
lyskom-unparsed-marker)
;;+++lyskom-string-skip-whitespace
(if quit-flag ; We are allowed to break here.
(setq inhibit-quit nil)) ; This will break
...
...
Write
Preview
Supports
Markdown
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