comparison lisp/international/mule.el @ 30965:d3223b7bcd96

(set-buffer-process-coding-system): Make interactive prompt less confusing.
author Miles Bader <miles@gnu.org>
date Sat, 19 Aug 2000 12:37:39 +0000
parents e55b142a5369
children 694e6396dc8b
comparison
equal deleted inserted replaced
30964:c6ebff75e052 30965:d3223b7bcd96
957 DECODING is the coding system to be used to decode input from the process, 957 DECODING is the coding system to be used to decode input from the process,
958 ENCODING is the coding system to be used to encode output to the process. 958 ENCODING is the coding system to be used to encode output to the process.
959 959
960 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems]." 960 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems]."
961 (interactive 961 (interactive
962 "zCoding-system for process input: \nzCoding-system for process output: ") 962 "zCoding-system for output from the process: \nzCoding-system for input to the process: ")
963 (let ((proc (get-buffer-process (current-buffer)))) 963 (let ((proc (get-buffer-process (current-buffer))))
964 (if (null proc) 964 (if (null proc)
965 (error "no process") 965 (error "no process")
966 (check-coding-system decoding) 966 (check-coding-system decoding)
967 (check-coding-system encoding) 967 (check-coding-system encoding)