aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-09-18 09:19:47 +0000
committerAndreas Schwab1998-09-18 09:19:47 +0000
commit334cc3b71bb3c203fe48eba606d60438dcf92fd4 (patch)
treed35d943e3ae2e0229179d23751e2e8e6d71c29b0
parentd2ef1f623995abc1ca1e04513f136e4f29e51bd7 (diff)
downloademacs-334cc3b71bb3c203fe48eba606d60438dcf92fd4.tar.gz
emacs-334cc3b71bb3c203fe48eba606d60438dcf92fd4.zip
(ps-font-info-database): Add missing dots in value.
Improve layout of customize type.
-rw-r--r--lisp/ps-print.el22
1 files changed, 14 insertions, 8 deletions
diff --git a/lisp/ps-print.el b/lisp/ps-print.el
index a44cfbee235..78f33149494 100644
--- a/lisp/ps-print.el
+++ b/lisp/ps-print.el
@@ -1335,7 +1335,7 @@ the left on even-numbered pages."
1335 (size . 10.0) 1335 (size . 10.0)
1336 (line-height . 11.0) 1336 (line-height . 11.0)
1337 (space-width . 2.5) 1337 (space-width . 2.5)
1338 (avg-char-width 4.71432)) 1338 (avg-char-width . 4.71432))
1339 (Palatino 1339 (Palatino
1340 (fonts (normal . "Palatino-Roman") 1340 (fonts (normal . "Palatino-Roman")
1341 (bold . "Palatino-Bold") 1341 (bold . "Palatino-Bold")
@@ -1360,7 +1360,7 @@ the left on even-numbered pages."
1360 (italic . "NewCenturySchlbk-Italic") 1360 (italic . "NewCenturySchlbk-Italic")
1361 (bold-italic . "NewCenturySchlbk-BoldItalic")) 1361 (bold-italic . "NewCenturySchlbk-BoldItalic"))
1362 (size . 10.0) 1362 (size . 10.0)
1363 (line-height 12.15) 1363 (line-height . 12.15)
1364 (space-width . 2.78) 1364 (space-width . 2.78)
1365 (avg-char-width . 5.31162)) 1365 (avg-char-width . 5.31162))
1366 ;; got no bold for the next ones 1366 ;; got no bold for the next ones
@@ -1426,20 +1426,26 @@ To get the info for another specific font (say Helvetica), do the following:
1426You can get all the fonts of YOUR printer using `ReportAllFontInfo'." 1426You can get all the fonts of YOUR printer using `ReportAllFontInfo'."
1427 :type '(repeat (list :tag "Font Definition" 1427 :type '(repeat (list :tag "Font Definition"
1428 (symbol :tag "Font Family") 1428 (symbol :tag "Font Family")
1429 (cons (const fonts) 1429 (cons :format "%v"
1430 (repeat (cons (choice (const normal) 1430 (const :format "" fonts)
1431 (repeat :tag "Faces"
1432 (cons (choice (const normal)
1431 (const bold) 1433 (const bold)
1432 (const italic) 1434 (const italic)
1433 (const bold-italic) 1435 (const bold-italic)
1434 (symbol :tag "Face")) 1436 (symbol :tag "Face"))
1435 (string :tag "Font Name")))) 1437 (string :tag "Font Name"))))
1436 (cons (const size) 1438 (cons :format "%v"
1439 (const :format "" size)
1437 (number :tag "Reference Size")) 1440 (number :tag "Reference Size"))
1438 (cons (const line-height) 1441 (cons :format "%v"
1442 (const :format "" line-height)
1439 (number :tag "Line Height")) 1443 (number :tag "Line Height"))
1440 (cons (const space-width) 1444 (cons :format "%v"
1445 (const :format "" space-width)
1441 (number :tag "Space Width")) 1446 (number :tag "Space Width"))
1442 (cons (const avg-char-width) 1447 (cons :format "%v"
1448 (const :format "" avg-char-width)
1443 (number :tag "Average Character Width")))) 1449 (number :tag "Average Character Width"))))
1444 :group 'ps-print-font) 1450 :group 'ps-print-font)
1445 1451