diff options
| author | Eli Zaretskii | 2007-03-31 10:57:01 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-03-31 10:57:01 +0000 |
| commit | 891c0674125daaaaefc3d189f19cf2bdd30131a0 (patch) | |
| tree | 47ab9a8eb41fe4576e68204261aa7e61526c7617 | |
| parent | 5376eb82e489921d2ece1dc42dbf9c8ebcbd0c02 (diff) | |
| download | emacs-891c0674125daaaaefc3d189f19cf2bdd30131a0.tar.gz emacs-891c0674125daaaaefc3d189f19cf2bdd30131a0.zip | |
Postscript -> PostScript.
| -rw-r--r-- | lispref/display.texi | 18 | ||||
| -rw-r--r-- | lispref/elisp.texi | 2 | ||||
| -rw-r--r-- | man/ack.texi | 2 | ||||
| -rw-r--r-- | man/emacs-mime.texi | 2 | ||||
| -rw-r--r-- | man/misc.texi | 2 |
5 files changed, 13 insertions, 13 deletions
diff --git a/lispref/display.texi b/lispref/display.texi index f485829725a..7b0df434125 100644 --- a/lispref/display.texi +++ b/lispref/display.texi | |||
| @@ -3603,7 +3603,7 @@ libraries (though it is not possible to add new image formats). | |||
| 3603 | 3603 | ||
| 3604 | The supported image formats include XBM, XPM (this requires the | 3604 | The supported image formats include XBM, XPM (this requires the |
| 3605 | libraries @code{libXpm} version 3.4k and @code{libz}), GIF (requiring | 3605 | libraries @code{libXpm} version 3.4k and @code{libz}), GIF (requiring |
| 3606 | @code{libungif} 4.1.0), Postscript, PBM, JPEG (requiring the | 3606 | @code{libungif} 4.1.0), PostScript, PBM, JPEG (requiring the |
| 3607 | @code{libjpeg} library version v6a), TIFF (requiring @code{libtiff} | 3607 | @code{libjpeg} library version v6a), TIFF (requiring @code{libtiff} |
| 3608 | v3.4), and PNG (requiring @code{libpng} 1.0.2). | 3608 | v3.4), and PNG (requiring @code{libpng} 1.0.2). |
| 3609 | 3609 | ||
| @@ -3658,7 +3658,7 @@ function always returns @code{t}; for other image types, it returns | |||
| 3658 | * XBM Images:: Special features for XBM format. | 3658 | * XBM Images:: Special features for XBM format. |
| 3659 | * XPM Images:: Special features for XPM format. | 3659 | * XPM Images:: Special features for XPM format. |
| 3660 | * GIF Images:: Special features for GIF format. | 3660 | * GIF Images:: Special features for GIF format. |
| 3661 | * Postscript Images:: Special features for Postscript format. | 3661 | * PostScript Images:: Special features for PostScript format. |
| 3662 | * Other Image Types:: Various other formats are supported. | 3662 | * Other Image Types:: Various other formats are supported. |
| 3663 | * Defining Images:: Convenient ways to define an image for later use. | 3663 | * Defining Images:: Convenient ways to define an image for later use. |
| 3664 | * Showing Images:: Convenient ways to display an image once it is defined. | 3664 | * Showing Images:: Convenient ways to display an image once it is defined. |
| @@ -3980,11 +3980,11 @@ every 0.1 seconds. | |||
| 3980 | (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil))) | 3980 | (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil))) |
| 3981 | @end ignore | 3981 | @end ignore |
| 3982 | 3982 | ||
| 3983 | @node Postscript Images | 3983 | @node PostScript Images |
| 3984 | @subsection Postscript Images | 3984 | @subsection PostScript Images |
| 3985 | @cindex Postscript images | 3985 | @cindex postscript images |
| 3986 | 3986 | ||
| 3987 | To use Postscript for an image, specify image type @code{postscript}. | 3987 | To use PostScript for an image, specify image type @code{postscript}. |
| 3988 | This works only if you have Ghostscript installed. You must always use | 3988 | This works only if you have Ghostscript installed. You must always use |
| 3989 | these three properties: | 3989 | these three properties: |
| 3990 | 3990 | ||
| @@ -3999,15 +3999,15 @@ The value, @var{height}, specifies the height of the image in points | |||
| 3999 | 3999 | ||
| 4000 | @item :bounding-box @var{box} | 4000 | @item :bounding-box @var{box} |
| 4001 | The value, @var{box}, must be a list or vector of four integers, which | 4001 | The value, @var{box}, must be a list or vector of four integers, which |
| 4002 | specifying the bounding box of the Postscript image, analogous to the | 4002 | specifying the bounding box of the PostScript image, analogous to the |
| 4003 | @samp{BoundingBox} comment found in Postscript files. | 4003 | @samp{BoundingBox} comment found in PostScript files. |
| 4004 | 4004 | ||
| 4005 | @example | 4005 | @example |
| 4006 | %%BoundingBox: 22 171 567 738 | 4006 | %%BoundingBox: 22 171 567 738 |
| 4007 | @end example | 4007 | @end example |
| 4008 | @end table | 4008 | @end table |
| 4009 | 4009 | ||
| 4010 | Displaying Postscript images from Lisp data is not currently | 4010 | Displaying PostScript images from Lisp data is not currently |
| 4011 | implemented, but it may be implemented by the time you read this. | 4011 | implemented, but it may be implemented by the time you read this. |
| 4012 | See the @file{etc/NEWS} file to make sure. | 4012 | See the @file{etc/NEWS} file to make sure. |
| 4013 | 4013 | ||
diff --git a/lispref/elisp.texi b/lispref/elisp.texi index fa9f93208e1..8773708f3d4 100644 --- a/lispref/elisp.texi +++ b/lispref/elisp.texi | |||
| @@ -1297,7 +1297,7 @@ Images | |||
| 1297 | * XBM Images:: Special features for XBM format. | 1297 | * XBM Images:: Special features for XBM format. |
| 1298 | * XPM Images:: Special features for XPM format. | 1298 | * XPM Images:: Special features for XPM format. |
| 1299 | * GIF Images:: Special features for GIF format. | 1299 | * GIF Images:: Special features for GIF format. |
| 1300 | * Postscript Images:: Special features for Postscript format. | 1300 | * PostScript Images:: Special features for PostScript format. |
| 1301 | * Other Image Types:: Various other formats are supported. | 1301 | * Other Image Types:: Various other formats are supported. |
| 1302 | * Defining Images:: Convenient ways to define an image for later use. | 1302 | * Defining Images:: Convenient ways to define an image for later use. |
| 1303 | * Showing Images:: Convenient ways to display an image once | 1303 | * Showing Images:: Convenient ways to display an image once |
diff --git a/man/ack.texi b/man/ack.texi index fecaf37cb15..51397f0b13f 100644 --- a/man/ack.texi +++ b/man/ack.texi | |||
| @@ -1310,7 +1310,7 @@ support. | |||
| 1310 | 1310 | ||
| 1311 | @item | 1311 | @item |
| 1312 | Jim Thompson wrote @file{ps-print.el}, which converts | 1312 | Jim Thompson wrote @file{ps-print.el}, which converts |
| 1313 | Emacs text to Postscript. | 1313 | Emacs text to PostScript. |
| 1314 | 1314 | ||
| 1315 | @item | 1315 | @item |
| 1316 | Tom Tromey and Chris Lindblad wrote @file{tcl.el}, a major mode for | 1316 | Tom Tromey and Chris Lindblad wrote @file{tcl.el}, a major mode for |
diff --git a/man/emacs-mime.texi b/man/emacs-mime.texi index c4fa9aa6879..a805b3f581b 100644 --- a/man/emacs-mime.texi +++ b/man/emacs-mime.texi | |||
| @@ -125,7 +125,7 @@ diff. Each of these features can be disabled by add an item into | |||
| 125 | @table @code | 125 | @table @code |
| 126 | @item postscript | 126 | @item postscript |
| 127 | @findex postscript | 127 | @findex postscript |
| 128 | Postscript file. | 128 | PostScript file. |
| 129 | 129 | ||
| 130 | @item uu | 130 | @item uu |
| 131 | @findex uu | 131 | @findex uu |
diff --git a/man/misc.texi b/man/misc.texi index bfe86af09f4..e3eca68532e 100644 --- a/man/misc.texi +++ b/man/misc.texi | |||
| @@ -1448,7 +1448,7 @@ Like @code{lpr-buffer} but print only the current region. | |||
| 1448 | @findex lpr-buffer | 1448 | @findex lpr-buffer |
| 1449 | @findex lpr-region | 1449 | @findex lpr-region |
| 1450 | @vindex lpr-switches | 1450 | @vindex lpr-switches |
| 1451 | The hardcopy commands (aside from the Postscript commands) pass extra | 1451 | The hardcopy commands (aside from the PostScript commands) pass extra |
| 1452 | switches to the @code{lpr} program based on the value of the variable | 1452 | switches to the @code{lpr} program based on the value of the variable |
| 1453 | @code{lpr-switches}. Its value should be a list of strings, each string | 1453 | @code{lpr-switches}. Its value should be a list of strings, each string |
| 1454 | an option starting with @samp{-}. For example, to specify a line width | 1454 | an option starting with @samp{-}. For example, to specify a line width |