aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/hardcopy.c
diff options
context:
space:
mode:
authorPavel Platto <hinidu@gmail.com>2014-06-05 11:23:30 +0300
committerPavel Platto <hinidu@gmail.com>2014-08-02 09:16:59 +0300
commite1dd98512f2cf7273da932211b6f47fd03e4c40a (patch)
treec33f938ac2c2afb0a3b0cae81cfefe2c46cc9dcf /src/nvim/hardcopy.c
parent2e831e56c7579653ce86014326b88d6a7221b7fb (diff)
downloadrneovim-e1dd98512f2cf7273da932211b6f47fd03e4c40a.tar.gz
rneovim-e1dd98512f2cf7273da932211b6f47fd03e4c40a.tar.bz2
rneovim-e1dd98512f2cf7273da932211b6f47fd03e4c40a.zip
Remove EBCDIC: Clean up comments
Diffstat (limited to 'src/nvim/hardcopy.c')
-rw-r--r--src/nvim/hardcopy.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c
index 64a5879d7d..3770859ee4 100644
--- a/src/nvim/hardcopy.c
+++ b/src/nvim/hardcopy.c
@@ -1502,9 +1502,7 @@ static void prt_flush_buffer(void)
prt_write_real(prt_text_run, 2);
prt_write_string("ul\n");
}
- /* Draw the text
- * Note: we write text out raw - EBCDIC conversion is handled in the
- * PostScript world via the font encoding vector. */
+ // Draw the text
if (prt_out_mbyte)
prt_write_string("<");
else
@@ -3031,9 +3029,7 @@ int mch_print_text_out(char_u *p, int len)
if (ch < 32 || ch == '(' || ch == ')' || ch == '\\') {
/* Convert non-printing characters to either their escape or octal
* sequence, ensures PS sent over a serial line does not interfere
- * with the comms protocol. Note: For EBCDIC we need to write out
- * the escape sequences as ASCII codes!
- * Note 2: Char codes < 32 are identical in EBCDIC and ASCII AFAIK!
+ * with the comms protocol.
*/
ga_append(&prt_ps_buffer, IF_EB('\\', 0134));
switch (ch) {