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
c353127b
Commit
c353127b
authored
Oct 25, 1999
by
David Byers
Browse files
Set decoding coding system on lyskom-proc to no-conversion
parent
a810b1e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/ChangeLog
View file @
c353127b
1999-10-25 David Byers <davby@ida.liu.se>
* startup.el (lyskom): Set process coding system decoding to
no-conversion or things can break. Will someone please MULEize
this for real?
* parse.el (lyskom-char-p): New implementation to fix spurious
protocol errors.
(lyskom-char-p): Fixed new implementation.
...
...
src/startup.el
View file @
c353127b
...
...
@@ -160,7 +160,7 @@ See lyskom-mode for details."
(
setq
proc
(
open-network-stream
name
buffer
proxy-host
proxy-port
))
(
set-process-coding-system
proc
'no-conversion
'
iso-8859-1
)
(
set-process-coding-system
proc
'no-conversion
'
no-conversion
)
;; Install our filter.
;; Do this before we send the CONNECT command to
...
...
@@ -190,7 +190,7 @@ CONNECT %s:%d HTTP/1.0\r\n\
)
(t (setq proc (open-network-stream name buffer
host port))
(set-process-coding-system proc 'no-conversion '
iso-8859-1
))))
(set-process-coding-system proc 'no-conversion '
no-conversion
))))
(switch-to-buffer buffer)
(lyskom-mode) ;Clearing lyskom-default...
(setq lyskom-buffer buffer)
...
...
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