Mercurial > emacs
annotate lisp/term/linux.el @ 23802:4052a2875390
(direct-print-region-function): Try to ensure that
printer-name is expanded to a file name on a local drive;
sometimes printing a file loaded from a network volume fails.
(direct-print-region-function): Add a function to
write-region-annotate-functions to append a formfeed character to
the region being printed, if the region doesn't end with a
formfeed already. This avoids creating a second print job
containing a blank page when print spooling is enabled on Windows.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Wed, 02 Dec 1998 23:01:50 +0000 |
parents | 2253ec0e71ca |
children | 67b464da13ec |
rev | line source |
---|---|
18616 | 1 ;; The Linux console handles Latin-1 by default. |
2 | |
20469
2253ec0e71ca
Don't call set-terminal-coding-system
Karl Heuer <kwzh@gnu.org>
parents:
20260
diff
changeset
|
3 (unless (terminal-coding-system) |
2253ec0e71ca
Don't call set-terminal-coding-system
Karl Heuer <kwzh@gnu.org>
parents:
20260
diff
changeset
|
4 (set-terminal-coding-system 'iso-latin-1)) |
20260
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
5 |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
6 ;; Make Latin-1 input characters work, too. |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
7 ;; Meta will continue to work, because the kernel |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
8 ;; turns that into Escape. |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
9 |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
10 (let ((value (current-input-mode))) |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
11 ;; The third arg only matters in that it is not t or nil. |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
12 (set-input-mode (nth 0 value) (nth 1 value) 'iso-latin-1 (nth 3 value))) |