emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108101: Add customization data to se


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108101: Add customization data to several built-in variables.
Date: Wed, 02 May 2012 21:00:29 +0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 108101
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Wed 2012-05-02 21:00:29 +0800
message:
  Add customization data to several built-in variables.
  
  * lisp/cus-start.el (gc-cons-percentage, exec-suffixes)
  (dos-display-scancodes, dos-hyper-key, dos-super-key)
  (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
  (make-cursor-line-fully-visible, void-text-area-pointer)
  (font-list-limit): Add customization data.
  
  * doc/lispref/display.texi (Font Lookup):
  * doc/lispref/frames.texi (Pointer Shape):
  * doc/lispref/processes.texi (Subprocess Creation): Use defopt for options.
modified:
  doc/lispref/ChangeLog
  doc/lispref/display.texi
  doc/lispref/frames.texi
  doc/lispref/processes.texi
  lisp/ChangeLog
  lisp/cus-start.el
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2012-05-02 07:20:29 +0000
+++ b/doc/lispref/ChangeLog     2012-05-02 13:00:29 +0000
@@ -1,3 +1,9 @@
+2012-05-02  Chong Yidong  <address@hidden>
+
+       * display.texi (Font Lookup):
+       * frames.texi (Pointer Shape):
+       * processes.texi (Subprocess Creation): Use defopt for options.
+
 2012-05-02  Glenn Morris  <address@hidden>
 
        * elisp.texi (@copying):

=== modified file 'doc/lispref/display.texi'
--- a/doc/lispref/display.texi  2012-04-27 03:10:38 +0000
+++ b/doc/lispref/display.texi  2012-05-02 13:00:29 +0000
@@ -2923,13 +2923,13 @@
 encoding of the font.
 @end defun
 
address@hidden font-list-limit
address@hidden font-list-limit
 This variable specifies maximum number of fonts to consider in font
-matching.  The function @code{x-family-fonts} will not return more than
-that many fonts, and font selection will consider only that many fonts
-when searching a matching font for face attributes.  The default is
-currently 100.
address@hidden defvar
+matching.  The function @code{x-family-fonts} will not return more
+than that many fonts, and font selection will consider only that many
+fonts when searching a matching font for face attributes.  The default
+is 100.
address@hidden defopt
 
 @node Fontsets
 @subsection Fontsets

=== modified file 'doc/lispref/frames.texi'
--- a/doc/lispref/frames.texi   2012-04-27 03:10:38 +0000
+++ b/doc/lispref/frames.texi   2012-05-02 13:00:29 +0000
@@ -1881,12 +1881,12 @@
 @code{arrow} style, but you can specify a different style (one of
 those above) by setting @code{void-text-area-pointer}.
 
address@hidden void-text-area-pointer
address@hidden void-text-area-pointer
 This variable specifies the mouse pointer style for void text areas.
 These include the areas after the end of a line or below the last line
 in the buffer.  The default is to use the @code{arrow} (non-text)
 pointer style.
address@hidden defvar
address@hidden defopt
 
   When using X, you can specify what the @code{text} pointer style
 really looks like by setting the variable @code{x-pointer-shape}.

=== modified file 'doc/lispref/processes.texi'
--- a/doc/lispref/processes.texi        2012-04-20 08:48:50 +0000
+++ b/doc/lispref/processes.texi        2012-05-02 13:00:29 +0000
@@ -96,12 +96,12 @@
   Executing a program can also try adding suffixes to the specified
 name:
 
address@hidden exec-suffixes
address@hidden exec-suffixes
 This variable is a list of suffixes (strings) to try adding to the
 specified program file name.  The list should include @code{""} if you
 want the name to be tried exactly as specified.  The default value is
 system-dependent.
address@hidden defvar
address@hidden defopt
 
   @strong{Please note:} The argument @var{program} contains only the
 name of the program; it may not contain any command-line arguments.  You

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-05-02 11:43:14 +0000
+++ b/lisp/ChangeLog    2012-05-02 13:00:29 +0000
@@ -6,6 +6,12 @@
 
 2012-05-02  Chong Yidong  <address@hidden>
 
+       * cus-start.el (gc-cons-percentage, exec-suffixes)
+       (dos-display-scancodes, dos-hyper-key, dos-super-key)
+       (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
+       (make-cursor-line-fully-visible, void-text-area-pointer)
+       (font-list-limit): Add customization data.
+
        * allout.el (allout-exposure-change-functions)
        (allout-structure-added-functions)
        (allout-structure-deleted-functions)

=== modified file 'lisp/cus-start.el'
--- a/lisp/cus-start.el 2012-05-01 21:06:59 +0000
+++ b/lisp/cus-start.el 2012-05-02 13:00:29 +0000
@@ -48,6 +48,7 @@
 ;; :tag - custom-tag property
 (let ((all '(;; alloc.c
             (gc-cons-threshold alloc integer)
+            (gc-cons-percentage alloc float)
             (garbage-collection-messages alloc boolean)
             ;; buffer.c
             (mode-line-format mode-line sexp) ;Hard to do right.
@@ -132,6 +133,7 @@
             (exec-path execute
                        (repeat (choice (const :tag "default directory" nil)
                                        (directory :format "%v"))))
+            (exec-suffixes execute (repeat string))
             ;; charset.c
             (charset-map-path installation
                               (repeat (directory :format "%v")))
@@ -174,6 +176,13 @@
             (inverse-video display boolean)
             (visible-bell display boolean)
             (no-redraw-on-reenter display boolean)
+
+            ;; dosfns.c
+            (dos-display-scancodes display boolean)
+            (dos-hyper-key keyboard integer)
+            (dos-super-key keyboard integer)
+            (dos-keypad-mode keyboard integer)
+
             ;; editfns.c
             (user-full-name mail string)
             ;; eval.c
@@ -190,8 +199,9 @@
                                     (const :tag "always" t)))
             (debug-ignored-errors debug (repeat (choice symbol regexp)))
             (debug-on-quit debug boolean)
-             ;; fileio.c
-             (delete-by-moving-to-trash auto-save boolean "23.1")
+            (debug-on-signal debug boolean)
+            ;; fileio.c
+            (delete-by-moving-to-trash auto-save boolean "23.1")
             (auto-save-visited-file-name auto-save boolean)
             ;; filelock.c
             (temporary-file-directory
@@ -227,6 +237,8 @@
             (use-dialog-box menu boolean "21.1")
             (use-file-dialog menu boolean "22.1")
             (focus-follows-mouse frames boolean "20.3")
+            ;; fontset.c
+            (vertical-centering-font-regexp display regexp)
             ;; frame.c
             (default-frame-alist frames
               (repeat (cons :format "%v"
@@ -419,6 +431,7 @@
             (hscroll-margin windows integer "22.1")
             (hscroll-step windows number "22.1")
             (truncate-partial-width-windows display boolean "23.1")
+            (make-cursor-line-fully-visible windows boolean)
             (mode-line-inverse-video mode-line boolean)
             (mode-line-in-non-selected-windows mode-line boolean "22.1")
             (line-number-display-limit display
@@ -449,10 +462,21 @@
                      (const :tag "System default" :value nil)) "23.3")
              (tool-bar-max-label-size frames integer "23.3")
             (auto-hscroll-mode scrolling boolean "21.1")
+            (void-text-area-pointer cursor
+                                    (choice
+                                     (const :tag "Standard (text pointer)" 
:value nil)
+                                     (const :tag "Arrow" :value arrow)
+                                     (const :tag "Text pointer" :value text)
+                                     (const :tag "Hand" :value hand)
+                                     (const :tag "Vertical dragger" :value 
vdrag)
+                                     (const :tag "Horizontal dragger" :value 
hdrag)
+                                     (const :tag "Same as mode line" :value 
modeline)
+                                     (const :tag "Hourglass" :value 
hourglass)))
             (display-hourglass cursor boolean)
             (hourglass-delay cursor number)
 
             ;; xfaces.c
+            (font-list-limit display integer)
             (scalable-fonts-allowed display boolean "22.1")
             ;; xfns.c
             (x-bitmap-file-path installation


reply via email to

[Prev in Thread] Current Thread [Next in Thread]