1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-18 03:40:47 -08:00

*** empty log message ***

This commit is contained in:
Gerd Moellmann 2001-01-30 19:51:14 +00:00
parent bdc9238e5f
commit efaa080bd7
5 changed files with 56 additions and 25 deletions

2
.gitignore vendored
View file

@ -37,3 +37,5 @@ config.status
config.cache config.cache
Makefile Makefile
emacs*.tar.gz emacs*.tar.gz
leim*.tar.gz
*.xdelta

View file

@ -1,5 +1,7 @@
2001-01-30 Gerd Moellmann <gerd@gnu.org> 2001-01-30 Gerd Moellmann <gerd@gnu.org>
* lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
* frame.el (frame-notice-user-settings): Do the tool-bar * frame.el (frame-notice-user-settings): Do the tool-bar
stuff only for graphical displays. Fix a braino. stuff only for graphical displays. Fix a braino.
@ -51,7 +53,7 @@
2001-01-29 Sam Steingold <sds@gnu.org> 2001-01-29 Sam Steingold <sds@gnu.org>
* vc-cvs.el: replaced (require 'vc) with a bunch of * vc-cvs.el: Replaced (require 'vc) with a bunch of
`autoload' statements. `autoload' statements.
2001-01-29 Eli Zaretskii <eliz@is.elta.co.il> 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>

View file

@ -957,8 +957,6 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.")
(custom-put-if-not 'show-paren-ring-bell-on-mismatch 'standard-value t) (custom-put-if-not 'show-paren-ring-bell-on-mismatch 'standard-value t)
(custom-put-if-not 'rmail-default-body-file 'custom-version "20.3") (custom-put-if-not 'rmail-default-body-file 'custom-version "20.3")
(custom-put-if-not 'rmail-default-body-file 'standard-value t) (custom-put-if-not 'rmail-default-body-file 'standard-value t)
(custom-put-if-not 'ansi-color-for-comint-mode 'custom-version "21.1")
(custom-put-if-not 'ansi-color-for-comint-mode 'standard-value t)
(custom-put-if-not 'gnus-emphasize-whitespace-regexp 'custom-version "21.1") (custom-put-if-not 'gnus-emphasize-whitespace-regexp 'custom-version "21.1")
(custom-put-if-not 'gnus-emphasize-whitespace-regexp 'standard-value t) (custom-put-if-not 'gnus-emphasize-whitespace-regexp 'standard-value t)
(custom-put-if-not 'gnus-summary-show-article-charset-alist 'custom-version "21.1") (custom-put-if-not 'gnus-summary-show-article-charset-alist 'custom-version "21.1")
@ -1066,7 +1064,7 @@ as a PDF file <URL:http://www.ecma.ch/ecma1/STAND/ECMA-048.HTM>.")
(custom-put-if-not 'eval-expression-print-level 'custom-version "21.1") (custom-put-if-not 'eval-expression-print-level 'custom-version "21.1")
(custom-put-if-not 'eval-expression-print-level 'standard-value t) (custom-put-if-not 'eval-expression-print-level 'standard-value t)
(defvar custom-versions-load-alist '(("20.3.3" "dos-vars") (21.1 "ange-ftp") ("20.4" "files" "help" "sh-script" "compile") ("20.3" "desktop" "easymenu" "hscroll" "dabbrev" "ffap" "rmail" "paren" "mailabbrev" "frame" "uce" "mouse" "diary-lib" "sendmail" "simple" "debug" "hexl" "vcursor" "vc" "compile" "etags" "help" "browse-url" "add-log" "find-func" "cus-edit" "replace") ("21.1" "server" "debug" "dabbrev" "isearch" "gnus-start" "mule" "vc" "ansi-color" "ediff-init" "paths" "sgml-mode" "net-utils" "cperl-mode" "rmail" "font-lock" "gnus-nocem" "vc-hooks" "paren" "faces" "fortran" "etags" "cus-edit" "frame" "vc-sccs" "gnus-group" "gnus-sum" "add-log" "find-func" "wid-edit" "vc-rcs" "files" "nnmail" "message" "vc-cvs" "simple" "gnus-agent" "flyspell" "gnus-art" "browse-url" "speedbar") ("20.8" "sql")) (defvar custom-versions-load-alist '(("20.3.3" "dos-vars") (21.1 "ange-ftp") ("20.4" "files" "help" "sh-script" "compile") ("20.3" "desktop" "easymenu" "hscroll" "dabbrev" "ffap" "rmail" "paren" "mailabbrev" "frame" "uce" "mouse" "diary-lib" "sendmail" "simple" "debug" "hexl" "vcursor" "vc" "compile" "etags" "help" "browse-url" "add-log" "find-func" "cus-edit" "replace") ("21.1" "server" "debug" "dabbrev" "isearch" "gnus-start" "mule" "vc" "ediff-init" "paths" "sgml-mode" "net-utils" "cperl-mode" "rmail" "font-lock" "gnus-nocem" "vc-hooks" "paren" "faces" "fortran" "etags" "cus-edit" "frame" "vc-sccs" "gnus-group" "gnus-sum" "add-log" "find-func" "wid-edit" "vc-rcs" "files" "nnmail" "message" "vc-cvs" "simple" "gnus-agent" "flyspell" "gnus-art" "browse-url" "speedbar") ("20.8" "sql"))
"For internal use by custom.") "For internal use by custom.")
(provide 'cus-load) (provide 'cus-load)

View file

@ -102,6 +102,9 @@
("cus-face.el" ("cus-face.el"
"customization support for faces." "customization support for faces."
(help faces)) (help faces))
("cus-load.el"
"automatically extracted custom dependencies"
nil)
("cus-start.el" ("cus-start.el"
"define customization properties of builtins." "define customization properties of builtins."
(internal)) (internal))
@ -1407,6 +1410,9 @@
("titdic-cnv.el" ("titdic-cnv.el"
"convert cxterm dictionary (TIT format) to Quail package" "convert cxterm dictionary (TIT format) to Quail package"
(quail tit cxterm)) (quail tit cxterm))
("utf-8.el"
"Limited UTF-8 decoding/encoding support"
(multilingual unicode utf-8))
("china-util.el" ("china-util.el"
"utilities for Chinese" "utilities for Chinese"
(mule multilingual chinese)) (mule multilingual chinese))
@ -2266,9 +2272,4 @@
(provide 'finder-inf) (provide 'finder-inf)
;;; Local Variables:
;;; version-control: never
;;; no-byte-compile: t
;;; no-update-autoloads: t
;;; End:
;;; finder-inf.el ends here ;;; finder-inf.el ends here

View file

@ -402,6 +402,28 @@ directory, so that Emacs will know its current contents." t nil)
(or (assoc "^/[^/:]*\\'" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*\\'" . ange-ftp-completion-hook-function)) file-name-handler-alist))) (or (assoc "^/[^/:]*\\'" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*\\'" . ange-ftp-completion-hook-function)) file-name-handler-alist)))
;;;***
;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on)
;;;;;; "ansi-color" "ansi-color.el" (14965 36539))
;;; Generated autoloads from ansi-color.el
(autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\
Set `ansi-color-for-comint-mode' to t." t nil)
(autoload (quote ansi-color-process-output) "ansi-color" "\
Maybe translate SGR control sequences of comint output into text-properties.
Depending on variable `ansi-color-for-comint-mode' the comint output is
either not processed, SGR control sequences are filtered using
`ansi-color-filter-region', or SGR control sequences are translated into
text-properties using `ansi-color-apply-on-region'.
The comint output is assumed to lie between the marker
`comint-last-output-start' and the process-mark.
This is a good function to put in `comint-output-filter-functions'." nil nil)
;;;*** ;;;***
;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules)
@ -5914,8 +5936,8 @@ Unequivocally turn on eldoc-mode (see variable documentation)." t nil)
;;;*** ;;;***
;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (14777 ;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (14966
;;;;;; 22205)) ;;;;;; 38375))
;;; Generated autoloads from elide-head.el ;;; Generated autoloads from elide-head.el
(autoload (quote elide-head) "elide-head" "\ (autoload (quote elide-head) "elide-head" "\
@ -9020,7 +9042,7 @@ Image files are those whose name has an extension in
;;;*** ;;;***
;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar
;;;;;; imenu-sort-function) "imenu" "imenu.el" (14942 54438)) ;;;;;; imenu-sort-function) "imenu" "imenu.el" (14965 37091))
;;; Generated autoloads from imenu.el ;;; Generated autoloads from imenu.el
(defvar imenu-sort-function nil "\ (defvar imenu-sort-function nil "\
@ -9142,6 +9164,8 @@ The function in this variable is called when selecting a normal index-item.")
(make-variable-buffer-local (quote imenu-default-goto-function)) (make-variable-buffer-local (quote imenu-default-goto-function))
(make-variable-buffer-local (quote imenu-syntax-alist))
(make-variable-buffer-local (quote imenu-case-fold-search)) (make-variable-buffer-local (quote imenu-case-fold-search))
(autoload (quote imenu-add-to-menubar) "imenu" "\ (autoload (quote imenu-add-to-menubar) "imenu" "\
@ -10157,11 +10181,15 @@ Major mode for browsing CVS log output." t nil)
;;;*** ;;;***
;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer
;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (14692 ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (14967
;;;;;; 45304)) ;;;;;; 5972))
;;; Generated autoloads from lpr.el ;;; Generated autoloads from lpr.el
(defvar printer-name (if (memq system-type (quote (ms-dos windows-nt))) "PRN") "\ (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt))))
(defvar lpr-lp-system (memq system-type (quote (usg-unix-v dgux hpux irix))))
(defvar printer-name (and lpr-windows-system "PRN") "\
*The name of a local printer to which data is sent for printing. *The name of a local printer to which data is sent for printing.
\(Note that PostScript files are sent to `ps-printer-name', which see.) \(Note that PostScript files are sent to `ps-printer-name', which see.)
@ -10182,7 +10210,7 @@ It is recommended to set `printer-name' instead of including an explicit
switch on this list. switch on this list.
See `lpr-command'.") See `lpr-command'.")
(defvar lpr-command (cond ((memq system-type (quote (ms-dos windows-nt))) "") ((memq system-type (quote (usg-unix-v dgux hpux irix))) "lp") (t "lpr")) "\ (defvar lpr-command (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")) "\
*Name of program for printing a file. *Name of program for printing a file.
On MS-DOS and MS-Windows systems, if the value is an empty string then On MS-DOS and MS-Windows systems, if the value is an empty string then
@ -11074,11 +11102,11 @@ Multiplication puzzle with GNU Emacs." t nil)
;;;*** ;;;***
;;;### (autoloads (msb-mode) "msb" "msb.el" (14854 32222)) ;;;### (autoloads (msb-mode) "msb" "msb.el" (14965 57143))
;;; Generated autoloads from msb.el ;;; Generated autoloads from msb.el
(defvar msb-mode nil "\ (defvar msb-mode nil "\
Toggle Msb mode on or off. Non-nil if Msb mode is enabled.
See the command `msb-mode' for a description of this minor-mode. See the command `msb-mode' for a description of this minor-mode.
Setting this variable directly does not take effect; Setting this variable directly does not take effect;
use either \\[customize] or the function `msb-mode'.") use either \\[customize] or the function `msb-mode'.")
@ -12108,7 +12136,7 @@ Setup shell-mode to use pcomplete." nil nil)
;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status
;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs"
;;;;;; "pcvs.el" (14962 39486)) ;;;;;; "pcvs.el" (14966 38375))
;;; Generated autoloads from pcvs.el ;;; Generated autoloads from pcvs.el
(autoload (quote cvs-checkout) "pcvs" "\ (autoload (quote cvs-checkout) "pcvs" "\
@ -13340,7 +13368,7 @@ variable." t nil)
;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output
;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers
;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names) ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names)
;;;;;; "rmail" "mail/rmail.el" (14961 12689)) ;;;;;; "rmail" "mail/rmail.el" (14965 23688))
;;; Generated autoloads from mail/rmail.el ;;; Generated autoloads from mail/rmail.el
(defvar rmail-dont-reply-to-names nil "\ (defvar rmail-dont-reply-to-names nil "\
@ -13355,7 +13383,7 @@ the variable `rmail-dont-reply-to-names', for when the user does not set
value is the user's name.) value is the user's name.)
It is useful to set this variable in the site customization file.") It is useful to set this variable in the site customization file.")
(defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^references:\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:\\|^x-mailer:\\|^delivered-to:\\|^lines:\\|^mime-version:\\|^content-transfer-encoding:\\|^x-coding-system:\\|^return-path:\\|^errors-to:\\|^return-receipt-to:\\|^x-attribution:\\|^x-disclaimer:" "\ (defvar rmail-ignored-headers (concat "^via:\\|^mail-from:\\|^origin:\\|^references:" "\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:" "\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:" "\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:" "\\|^nntp-posting-host:\\|^path:\\|^x-char.*:\\|^x-face:" "\\|^x-mailer:\\|^delivered-to:\\|^lines:\\|^mime-version:" "\\|^content-transfer-encoding:\\|^x-coding-system:" "\\|^return-path:\\|^errors-to:\\|^return-receipt-to:" "\\|^x-sign:\\|^x-beenthere:\\|^x-mailman-version:" "\\|^precedence:\\|^list-help:\\|^list-post:\\|^list-subscribe:" "\\|^list-id:\\|^list-unsubscribe:\\|^list-archive:" "\\|^content-type:\\|^content-length:" "\\|^x-attribution:\\|^x-disclaimer:") "\
*Regexp to match header fields that Rmail should normally hide. *Regexp to match header fields that Rmail should normally hide.
This variable is used for reformatting the message header, This variable is used for reformatting the message header,
which normally happens once for each message, which normally happens once for each message,
@ -15275,7 +15303,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
;;;*** ;;;***
;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl"
;;;;;; "progmodes/tcl.el" (14651 36906)) ;;;;;; "progmodes/tcl.el" (14965 55646))
;;; Generated autoloads from progmodes/tcl.el ;;; Generated autoloads from progmodes/tcl.el
(autoload (quote tcl-mode) "tcl" "\ (autoload (quote tcl-mode) "tcl" "\
@ -15979,7 +16007,7 @@ If DATE is malformed, a zero time will be returned." nil nil)
;;;*** ;;;***
;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp"
;;;;;; "time-stamp.el" (14962 39486)) ;;;;;; "time-stamp.el" (14966 38375))
;;; Generated autoloads from time-stamp.el ;;; Generated autoloads from time-stamp.el
(autoload (quote time-stamp) "time-stamp" "\ (autoload (quote time-stamp) "time-stamp" "\
@ -16835,7 +16863,7 @@ colors. `vc-annotate-background' specifies the background color." t nil)
;;;*** ;;;***
;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (14961 12689)) ;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (14966 38375))
;;; Generated autoloads from vc-cvs.el ;;; Generated autoloads from vc-cvs.el
(defun vc-cvs-registered (f) (defun vc-cvs-registered (f)
(when (file-readable-p (expand-file-name (when (file-readable-p (expand-file-name
@ -17675,7 +17703,7 @@ With arg, turn Winner mode on if and only if arg is positive." t nil)
;;;*** ;;;***
;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman"
;;;;;; "woman.el" (14835 62039)) ;;;;;; "woman.el" (14966 38375))
;;; Generated autoloads from woman.el ;;; Generated autoloads from woman.el
(autoload (quote woman) "woman" "\ (autoload (quote woman) "woman" "\