aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-02-17 17:40:43 +0000
committerRichard M. Stallman2001-02-17 17:40:43 +0000
commitb08fa67e1cc306e72815d4d15e82df8309954a12 (patch)
tree493dcccca8292a0a6b7651dc0ccbdafe2fcd6385
parentbdb678d27594988945cd4d62b2d0be398f1be77e (diff)
downloademacs-b08fa67e1cc306e72815d4d15e82df8309954a12.tar.gz
emacs-b08fa67e1cc306e72815d4d15e82df8309954a12.zip
Small cleanups in usage.
-rw-r--r--man/macos.texi38
1 files changed, 18 insertions, 20 deletions
diff --git a/man/macos.texi b/man/macos.texi
index 1d4106cb337..3e433a0afe9 100644
--- a/man/macos.texi
+++ b/man/macos.texi
@@ -24,15 +24,14 @@ As a result, packages such as Gnus, Ispell, and Comint do not work.
24they are not supported in the Mac OS version. 24they are not supported in the Mac OS version.
25 25
26@menu 26@menu
27* Mac Input:: Keyboard input on the Mac. 27* Input: Mac Input. Keyboard input on the Mac.
28* Mac International:: International character set support on the Mac. 28* Intl: Mac International. International character sets on the Mac.
29* Mac Environment Variables:: Setting environment variables for Emacs. 29* Env: Mac Environment Variables. Setting environment variables for Emacs.
30* Mac Directories:: Volumes and directories on the Mac. 30* Directories: Mac Directories. Volumes and directories on the Mac.
31* Mac Font Specs:: Specifying fonts on the Mac. 31* Font: Mac Font Specs. Specifying fonts on the Mac.
32* Mac Functions:: Mac specific Lisp functions. 32* Functions: Mac Functions. Mac-specific Lisp functions.
33@end menu 33@end menu
34 34
35
36@node Mac Input 35@node Mac Input
37@section Keyboard Input on the Mac 36@section Keyboard Input on the Mac
38@cindex Meta (under Mac OS) 37@cindex Meta (under Mac OS)
@@ -74,7 +73,7 @@ generates Latin-2 codes by typink @kbd{C-x RET k iso-latin-2 RET}. To
74make this setting permanent, put this in your @file{.emacs} init file: 73make this setting permanent, put this in your @file{.emacs} init file:
75 74
76@lisp 75@lisp
77 (set-keyboard-coding-system 'iso-latin-2) 76(set-keyboard-coding-system 'iso-latin-2)
78@end lisp 77@end lisp
79 78
80@node Mac International 79@node Mac International
@@ -86,7 +85,7 @@ make this setting permanent, put this in your @file{.emacs} init file:
86characters. It also deviates from the ISO 2022 standard by using code 85characters. It also deviates from the ISO 2022 standard by using code
87points in the range 128-159. The coding system @code{mac-roman} is used 86points in the range 128-159. The coding system @code{mac-roman} is used
88to represent this Mac encoding. It is used for editing files stored in 87to represent this Mac encoding. It is used for editing files stored in
89this native encoding, and for displaying filenames in Dired mode. 88this native encoding, and for displaying file names in Dired mode.
90 89
91 Any native (non-symbol) Mac font can be used to correctly display 90 Any native (non-symbol) Mac font can be used to correctly display
92characters in the @code{mac-roman} coding system. 91characters in the @code{mac-roman} coding system.
@@ -165,10 +164,10 @@ EMACS_UNIBYTE=1
165 The directory structure in the Mac OS is seen by Emacs as 164 The directory structure in the Mac OS is seen by Emacs as
166 165
167@example 166@example
168/<volumename>/<pathname> 167/@var{volumename}/@var{filename}
169@end example 168@end example
170 169
171So when Emacs requests a file name, doing filename completion on 170So when Emacs requests a file name, doing file name completion on
172@file{/} will display all volumes on the system. As in Unix, @file{..} 171@file{/} will display all volumes on the system. As in Unix, @file{..}
173can be used to go up a directory level. 172can be used to go up a directory level.
174 173
@@ -192,16 +191,15 @@ another directory but this folder will still be created.
192 Fonts are specified to Emacs on the Mac in the form of a standard X 191 Fonts are specified to Emacs on the Mac in the form of a standard X
193font name. I.e., 192font name. I.e.,
194 193
195@example 194@smallexample
196 -FOUNDRY-FAMILY-WEIGHT-SLANT-WIDTH--PIXELS-POINTS- 195-@var{foundry}-@var{family}-@var{weight}-@var{slant}-@var{width}--@var{pixels}-@var{points}-@var{hres}-@var{vres}-@var{spacing}-@var{avewidth}-@var{charset}
197 HRES-VRES-SPACING-AVEWIDTH-CHARSET 196@end smallexample
198@end example
199 197
198@noindent
200where the fields refer to foundry, font family, weight, slant, width, 199where the fields refer to foundry, font family, weight, slant, width,
201pixels, point size, horizontal resolution, vertical resolution, spacing, 200pixels, point size, horizontal resolution, vertical resolution,
202average width, and character set, respectively. 201spacing, average width, and character set, respectively. Wildcards
203 202are supported as they are on X.
204Wildcards are supported as they are on X.
205 203
206 Native Apple fonts in Mac Roman encoding has foundry name @code{apple} 204 Native Apple fonts in Mac Roman encoding has foundry name @code{apple}
207and charset @code{mac-roman}. For example 12-point Monaco can be 205and charset @code{mac-roman}. For example 12-point Monaco can be
@@ -229,7 +227,7 @@ string.
229 227
230@findex mac-filename-to-unix 228@findex mac-filename-to-unix
231@findex unix-filename-to-mac 229@findex unix-filename-to-mac
232 The function @code{mac-filename-to-unix} takes a Mac pathname and 230 The function @code{mac-filename-to-unix} takes a Mac file name and
233returns the Unix equivalent. The function @code{unix-filename-to-mac} 231returns the Unix equivalent. The function @code{unix-filename-to-mac}
234performs the opposite conversion. They are useful for constructing 232performs the opposite conversion. They are useful for constructing
235AppleScript commands to be passed to @code{do-applescript}. 233AppleScript commands to be passed to @code{do-applescript}.