aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinicius Jose Latorre2007-08-16 22:29:51 +0000
committerVinicius Jose Latorre2007-08-16 22:29:51 +0000
commit54b506db134c4a23538819660cb5ac727acb9bdb (patch)
treeb69d7dfc0c4a8d23dca97031ff6d09f58b135467
parentb2e6b10fe2d40020a75ab0025af98a4abf339cd2 (diff)
downloademacs-54b506db134c4a23538819660cb5ac727acb9bdb.tar.gz
emacs-54b506db134c4a23538819660cb5ac727acb9bdb.zip
Docstring fix
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/ps-print.el15
2 files changed, 16 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8daf2daf71f..5d1348ef9ee 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12007-08-16 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2
3 * ps-print.el (ps-font-size, ps-header-font-size)
4 (ps-header-title-font-size, ps-footer-font-size)
5 (ps-line-number-font-size): Docstring fix.
6
12007-08-13 Nick Roberts <nickrob@snap.net.nz> 72007-08-13 Nick Roberts <nickrob@snap.net.nz>
2 8
3 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully. 9 * progmodes/gdb-ui.el (gdb-send): Handle CTRL-D more carefully.
diff --git a/lisp/ps-print.el b/lisp/ps-print.el
index bd46c8a6f53..0e75d46cfe9 100644
--- a/lisp/ps-print.el
+++ b/lisp/ps-print.el
@@ -2805,7 +2805,8 @@ uses the fonts resident in your printer."
2805 :group 'ps-print-font) 2805 :group 'ps-print-font)
2806 2806
2807(defcustom ps-font-size '(7 . 8.5) 2807(defcustom ps-font-size '(7 . 8.5)
2808 "*Font size, in points, for ordinary text, when generating PostScript." 2808 "*Font size, in points, for ordinary text, when generating PostScript.
2809Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2809 :type '(choice :menu-tag "Ordinary Text Font Size" 2810 :type '(choice :menu-tag "Ordinary Text Font Size"
2810 :tag "Ordinary Text Font Size" 2811 :tag "Ordinary Text Font Size"
2811 (number :tag "Text Size") 2812 (number :tag "Text Size")
@@ -2822,7 +2823,8 @@ uses the fonts resident in your printer."
2822 :group 'ps-print-font) 2823 :group 'ps-print-font)
2823 2824
2824(defcustom ps-header-font-size '(10 . 12) 2825(defcustom ps-header-font-size '(10 . 12)
2825 "*Font size, in points, for text in the header, when generating PostScript." 2826 "*Font size, in points, for text in the header, when generating PostScript.
2827Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2826 :type '(choice :menu-tag "Header Font Size" 2828 :type '(choice :menu-tag "Header Font Size"
2827 :tag "Header Font Size" 2829 :tag "Header Font Size"
2828 (number :tag "Header Size") 2830 (number :tag "Header Size")
@@ -2833,7 +2835,8 @@ uses the fonts resident in your printer."
2833 :group 'ps-print-font) 2835 :group 'ps-print-font)
2834 2836
2835(defcustom ps-header-title-font-size '(12 . 14) 2837(defcustom ps-header-title-font-size '(12 . 14)
2836 "*Font size, in points, for the top line of text in header, in PostScript." 2838 "*Font size, in points, for the top line of text in header, in PostScript.
2839Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2837 :type '(choice :menu-tag "Header Title Font Size" 2840 :type '(choice :menu-tag "Header Title Font Size"
2838 :tag "Header Title Font Size" 2841 :tag "Header Title Font Size"
2839 (number :tag "Header Title Size") 2842 (number :tag "Header Title Size")
@@ -2850,7 +2853,8 @@ uses the fonts resident in your printer."
2850 :group 'ps-print-font) 2853 :group 'ps-print-font)
2851 2854
2852(defcustom ps-footer-font-size '(10 . 12) 2855(defcustom ps-footer-font-size '(10 . 12)
2853 "*Font size, in points, for text in the footer, when generating PostScript." 2856 "*Font size, in points, for text in the footer, when generating PostScript.
2857Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2854 :type '(choice :menu-tag "Footer Font Size" 2858 :type '(choice :menu-tag "Footer Font Size"
2855 :tag "Footer Font Size" 2859 :tag "Footer Font Size"
2856 (number :tag "Footer Size") 2860 (number :tag "Footer Size")
@@ -2882,7 +2886,8 @@ uses the fonts resident in your printer."
2882 :group 'ps-print-miscellany) 2886 :group 'ps-print-miscellany)
2883 2887
2884(defcustom ps-line-number-font-size 6 2888(defcustom ps-line-number-font-size 6
2885 "*Font size, in points, for line number, when generating PostScript." 2889 "*Font size, in points, for line number, when generating PostScript.
2890Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2886 :type '(choice :menu-tag "Line Number Font Size" 2891 :type '(choice :menu-tag "Line Number Font Size"
2887 :tag "Line Number Font Size" 2892 :tag "Line Number Font Size"
2888 (number :tag "Font Size") 2893 (number :tag "Font Size")