diff options
| author | Vinicius Jose Latorre | 2007-07-25 14:39:45 +0000 |
|---|---|---|
| committer | Vinicius Jose Latorre | 2007-07-25 14:39:45 +0000 |
| commit | 2c0ebf75eddeb9a5af0af4af2bc7e23793f17268 (patch) | |
| tree | d1b765fa89961eea681bb053aa97dba9e7592c57 | |
| parent | 13d41029c7ffbc04d7497ed70cc44f02142e93ee (diff) | |
| download | emacs-2c0ebf75eddeb9a5af0af4af2bc7e23793f17268.tar.gz emacs-2c0ebf75eddeb9a5af0af4af2bc7e23793f17268.zip | |
Docstring fix
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/ps-mule.el | 25 |
2 files changed, 15 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ad389adcb18..9b4f3d4b8af 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -3,7 +3,8 @@ | |||
| 3 | * ps-print.el (ps-multibyte-buffer): Docstring fix. | 3 | * ps-print.el (ps-multibyte-buffer): Docstring fix. |
| 4 | 4 | ||
| 5 | * ps-mule.el: Doc fix. | 5 | * ps-mule.el: Doc fix. |
| 6 | (ps-multibyte-buffer): Docstring fix. | 6 | (ps-multibyte-buffer, ps-mule-font-info-database-default) |
| 7 | (ps-mule-external-libraries, ps-mule-begin-job): Docstring fix. | ||
| 7 | 8 | ||
| 8 | 2007-07-25 Glenn Morris <rgm@gnu.org> | 9 | 2007-07-25 Glenn Morris <rgm@gnu.org> |
| 9 | 10 | ||
diff --git a/lisp/ps-mule.el b/lisp/ps-mule.el index 69ead838059..eccf53dd942 100644 --- a/lisp/ps-mule.el +++ b/lisp/ps-mule.el | |||
| @@ -261,7 +261,7 @@ See also the variable `ps-font-info-database'.") | |||
| 261 | 261 | ||
| 262 | (defcustom ps-mule-font-info-database-default | 262 | (defcustom ps-mule-font-info-database-default |
| 263 | ps-mule-font-info-database-latin | 263 | ps-mule-font-info-database-latin |
| 264 | "The default setting to use when `ps-multibyte-buffer' is nil." | 264 | "*The default setting to use when `ps-multibyte-buffer' is nil." |
| 265 | :type '(symbol :tag "Multi-Byte Buffer Database Font Default") | 265 | :type '(symbol :tag "Multi-Byte Buffer Database Font Default") |
| 266 | :group 'ps-print-font) | 266 | :group 'ps-print-font) |
| 267 | 267 | ||
| @@ -520,16 +520,17 @@ element of the list." | |||
| 520 | (defconst ps-mule-external-libraries | 520 | (defconst ps-mule-external-libraries |
| 521 | '((builtin nil nil | 521 | '((builtin nil nil |
| 522 | nil nil nil) | 522 | nil nil nil) |
| 523 | (bdf ps-bdf nil | 523 | (bdf ps-bdf nil |
| 524 | bdf-generate-prologue bdf-generate-font bdf-generate-glyphs) | 524 | bdf-generate-prologue bdf-generate-font bdf-generate-glyphs) |
| 525 | (pcf nil nil | 525 | (pcf nil nil |
| 526 | pcf-generate-prologue pcf-generate-font pcf-generate-glyphs) | 526 | pcf-generate-prologue pcf-generate-font pcf-generate-glyphs) |
| 527 | (vflib nil nil | 527 | (vflib nil nil |
| 528 | vflib-generate-prologue vflib-generate-font vflib-generate-glyphs)) | 528 | vflib-generate-prologue vflib-generate-font vflib-generate-glyphs)) |
| 529 | "Alist of information of external libraries to support PostScript printing. | 529 | "Alist of external libraries information to support PostScript printing. |
| 530 | Each element has the form: | 530 | Each element has the form: |
| 531 | 531 | ||
| 532 | (FONT-SRC FEATURE INITIALIZED-P PROLOGUE-FUNC FONT-FUNC GLYPHS-FUNC) | 532 | (FONT-SRC FEATURE INITIALIZED-P |
| 533 | PROLOGUE-FUNC FONT-FUNC GLYPHS-FUNC) | ||
| 533 | 534 | ||
| 534 | FONT-SRC is the font source: builtin, bdf, pcf, or vflib. | 535 | FONT-SRC is the font source: builtin, bdf, pcf, or vflib. |
| 535 | 536 | ||
| @@ -543,8 +544,8 @@ PROLOGUE-FUNC is a function to generate PostScript code which define several | |||
| 543 | PostScript procedures that will be called by FONT-FUNC and GLYPHS-FUNC. It is | 544 | PostScript procedures that will be called by FONT-FUNC and GLYPHS-FUNC. It is |
| 544 | called with no argument, and should return a list of strings. | 545 | called with no argument, and should return a list of strings. |
| 545 | 546 | ||
| 546 | FONT-FUNC is a function to generate PostScript code which define a new font. It | 547 | FONT-FUNC is a function to generate PostScript code which define a new font. |
| 547 | is called with one argument FONT-SPEC, and should return a list of strings. | 548 | It is called with one argument FONT-SPEC, and should return a list of strings. |
| 548 | 549 | ||
| 549 | GLYPHS-FUNC is a function to generate PostScript code which define glyphs of | 550 | GLYPHS-FUNC is a function to generate PostScript code which define glyphs of |
| 550 | characters. It is called with three arguments FONT-SPEC, CODE-LIST, and BYTES, | 551 | characters. It is called with three arguments FONT-SPEC, CODE-LIST, and BYTES, |
| @@ -1458,7 +1459,7 @@ or \\[universal-argument] \\[what-cursor-position] will give information about t | |||
| 1458 | ;;;###autoload | 1459 | ;;;###autoload |
| 1459 | (defun ps-mule-begin-job (from to) | 1460 | (defun ps-mule-begin-job (from to) |
| 1460 | "Start printing job for multi-byte chars between FROM and TO. | 1461 | "Start printing job for multi-byte chars between FROM and TO. |
| 1461 | This checks if all multi-byte characters in the region are printable or not." | 1462 | It checks if all multi-byte characters in the region are printable or not." |
| 1462 | (setq ps-mule-charset-list nil | 1463 | (setq ps-mule-charset-list nil |
| 1463 | ps-mule-header-charsets nil | 1464 | ps-mule-header-charsets nil |
| 1464 | ps-mule-font-info-database | 1465 | ps-mule-font-info-database |