comparison lisp/loaddefs.el @ 28288:739959bbed82

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Thu, 23 Mar 2000 15:09:56 +0000
parents 7252a5d43f22
children 156a858432c4
comparison
equal deleted inserted replaced
28287:81439087220a 28288:739959bbed82
1308 ;;;;;; browse-url-mosaic browse-url-netscape browse-url-at-mouse 1308 ;;;;;; browse-url-mosaic browse-url-netscape browse-url-at-mouse
1309 ;;;;;; browse-url-at-point browse-url browse-url-of-region browse-url-of-dired-file 1309 ;;;;;; browse-url-at-point browse-url browse-url-of-region browse-url-of-dired-file
1310 ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-generic-program 1310 ;;;;;; browse-url-of-buffer browse-url-of-file browse-url-generic-program
1311 ;;;;;; browse-url-save-file browse-url-netscape-display browse-url-new-window-p 1311 ;;;;;; browse-url-save-file browse-url-netscape-display browse-url-new-window-p
1312 ;;;;;; browse-url-browser-function) "browse-url" "net/browse-url.el" 1312 ;;;;;; browse-url-browser-function) "browse-url" "net/browse-url.el"
1313 ;;;;;; (14477 53252)) 1313 ;;;;;; (14554 2050))
1314 ;;; Generated autoloads from net/browse-url.el 1314 ;;; Generated autoloads from net/browse-url.el
1315 1315
1316 (defvar browse-url-browser-function (if (eq system-type (quote windows-nt)) (quote browse-url-default-windows-browser) (quote browse-url-netscape)) "\ 1316 (defvar browse-url-browser-function (if (eq system-type (quote windows-nt)) (quote browse-url-default-windows-browser) (quote browse-url-netscape)) "\
1317 *Function to display the current buffer in a WWW browser. 1317 *Function to display the current buffer in a WWW browser.
1318 This is used by the `browse-url-at-point', `browse-url-at-mouse', and 1318 This is used by the `browse-url-at-point', `browse-url-at-mouse', and
3331 ;;;;;; customize-apropos-options customize-apropos customize-saved 3331 ;;;;;; customize-apropos-options customize-apropos customize-saved
3332 ;;;;;; customize-customized customize-face-other-window customize-face 3332 ;;;;;; customize-customized customize-face-other-window customize-face
3333 ;;;;;; customize-option-other-window customize-changed-options customize-option 3333 ;;;;;; customize-option-other-window customize-changed-options customize-option
3334 ;;;;;; customize-group-other-window customize-group customize customize-save-variable 3334 ;;;;;; customize-group-other-window customize-group customize customize-save-variable
3335 ;;;;;; customize-set-variable customize-set-value) "cus-edit" "cus-edit.el" 3335 ;;;;;; customize-set-variable customize-set-value) "cus-edit" "cus-edit.el"
3336 ;;;;;; (14545 22746)) 3336 ;;;;;; (14552 48684))
3337 ;;; Generated autoloads from cus-edit.el 3337 ;;; Generated autoloads from cus-edit.el
3338 (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") 3338 (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'")
3339 3339
3340 (autoload (quote customize-set-value) "cus-edit" "\ 3340 (autoload (quote customize-set-value) "cus-edit" "\
3341 Set VARIABLE to VALUE. VALUE is a Lisp object. 3341 Set VARIABLE to VALUE. VALUE is a Lisp object.
3510 3510
3511 See `defface' for the format of SPEC." nil nil) 3511 See `defface' for the format of SPEC." nil nil)
3512 3512
3513 ;;;*** 3513 ;;;***
3514 3514
3515 ;;;### (autoloads nil "cvs-status" "cvs-status.el" (14537 49316)) 3515 ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el"
3516 ;;;;;; (14552 48684))
3516 ;;; Generated autoloads from cvs-status.el 3517 ;;; Generated autoloads from cvs-status.el
3517 3518
3518 (autoload (quote cvs-status-mode) "cvs-status" "\ 3519 (autoload (quote cvs-status-mode) "cvs-status" "\
3519 Mode used for cvs status output." t) 3520 Mode used for cvs status output." t nil)
3520 3521
3521 ;;;*** 3522 ;;;***
3522 3523
3523 ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) 3524 ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode)
3524 ;;;;;; "cwarn" "progmodes/cwarn.el" (14431 15379)) 3525 ;;;;;; "cwarn" "progmodes/cwarn.el" (14431 15379))
3893 3894
3894 (custom-add-load (quote delete-selection-mode) (quote delsel)) 3895 (custom-add-load (quote delete-selection-mode) (quote delsel))
3895 3896
3896 ;;;*** 3897 ;;;***
3897 3898
3898 ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) 3899 ;;;### (autoloads (derived-mode-init-mode-variables) "derived" "derived.el"
3899 ;;;;;; "derived" "derived.el" (14410 18534)) 3900 ;;;;;; (14552 48685))
3900 ;;; Generated autoloads from derived.el 3901 ;;; Generated autoloads from derived.el
3901
3902 (autoload (quote define-derived-mode) "derived" "\
3903 Create a new mode as a variant of an existing mode.
3904
3905 The arguments to this command are as follow:
3906
3907 CHILD: the name of the command for the derived mode.
3908 PARENT: the name of the command for the parent mode (e.g. `text-mode').
3909 NAME: a string which will appear in the status line (e.g. \"Hypertext\")
3910 DOCSTRING: an optional documentation string--if you do not supply one,
3911 the function will attempt to invent something useful.
3912 BODY: forms to execute just before running the
3913 hooks for the new mode.
3914
3915 Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
3916
3917 (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
3918
3919 You could then make new key bindings for `LaTeX-thesis-mode-map'
3920 without changing regular LaTeX mode. In this example, BODY is empty,
3921 and DOCSTRING is generated by default.
3922
3923 On a more complicated level, the following command uses `sgml-mode' as
3924 the parent, and then sets the variable `case-fold-search' to nil:
3925
3926 (define-derived-mode article-mode sgml-mode \"Article\"
3927 \"Major mode for editing technical articles.\"
3928 (setq case-fold-search nil))
3929
3930 Note that if the documentation string had been left out, it would have
3931 been generated automatically, with a reference to the keymap." nil (quote macro))
3932 3902
3933 (autoload (quote derived-mode-init-mode-variables) "derived" "\ 3903 (autoload (quote derived-mode-init-mode-variables) "derived" "\
3934 Initialise variables for a new MODE. 3904 Initialise variables for a new MODE.
3935 Right now, if they don't already exist, set up a blank keymap, an 3905 Right now, if they don't already exist, set up a blank keymap, an
3936 empty syntax table, and an empty abbrev table -- these will be merged 3906 empty syntax table, and an empty abbrev table -- these will be merged
4074 The backup file is the first file given to `diff'." t nil) 4044 The backup file is the first file given to `diff'." t nil)
4075 4045
4076 ;;;*** 4046 ;;;***
4077 4047
4078 ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" 4048 ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el"
4079 ;;;;;; (14495 17964)) 4049 ;;;;;; (14552 48685))
4080 ;;; Generated autoloads from diff-mode.el 4050 ;;; Generated autoloads from diff-mode.el
4081 4051
4082 (autoload (quote diff-mode) "diff-mode" "\ 4052 (autoload (quote diff-mode) "diff-mode" "\
4083 Major mode for viewing/editing context diffs. 4053 Major mode for viewing/editing context diffs.
4084 Supports unified and context diffs as well as (to a lesser extent) normal diffs. 4054 Supports unified and context diffs as well as (to a lesser extent) normal diffs.
4594 (autoload (quote gnus-earcon-display) "earcon" "\ 4564 (autoload (quote gnus-earcon-display) "earcon" "\
4595 Play sounds in message buffers." t nil) 4565 Play sounds in message buffers." t nil)
4596 4566
4597 ;;;*** 4567 ;;;***
4598 4568
4599 ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap define-minor-mode) 4569 ;;;### (autoloads (define-derived-mode easy-mmode-defsyntax easy-mmode-defmap
4600 ;;;;;; "easy-mmode" "emacs-lisp/easy-mmode.el" (14539 53684)) 4570 ;;;;;; define-minor-mode) "easy-mmode" "emacs-lisp/easy-mmode.el"
4571 ;;;;;; (14552 48943))
4601 ;;; Generated autoloads from emacs-lisp/easy-mmode.el 4572 ;;; Generated autoloads from emacs-lisp/easy-mmode.el
4602 4573
4603 (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) 4574 (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode))
4604 4575
4605 (autoload (quote define-minor-mode) "easy-mmode" "\ 4576 (autoload (quote define-minor-mode) "easy-mmode" "\
4617 It will be executed after any toggling but before running the hooks." nil (quote macro)) 4588 It will be executed after any toggling but before running the hooks." nil (quote macro))
4618 4589
4619 (autoload (quote easy-mmode-defmap) "easy-mmode" nil nil (quote macro)) 4590 (autoload (quote easy-mmode-defmap) "easy-mmode" nil nil (quote macro))
4620 4591
4621 (autoload (quote easy-mmode-defsyntax) "easy-mmode" nil nil (quote macro)) 4592 (autoload (quote easy-mmode-defsyntax) "easy-mmode" nil nil (quote macro))
4593
4594 (autoload (quote define-derived-mode) "easy-mmode" "\
4595 Create a new mode as a variant of an existing mode.
4596
4597 The arguments to this command are as follow:
4598
4599 CHILD: the name of the command for the derived mode.
4600 PARENT: the name of the command for the parent mode (e.g. `text-mode').
4601 NAME: a string which will appear in the status line (e.g. \"Hypertext\")
4602 DOCSTRING: an optional documentation string--if you do not supply one,
4603 the function will attempt to invent something useful.
4604 BODY: forms to execute just before running the
4605 hooks for the new mode.
4606
4607 Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
4608
4609 (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
4610
4611 You could then make new key bindings for `LaTeX-thesis-mode-map'
4612 without changing regular LaTeX mode. In this example, BODY is empty,
4613 and DOCSTRING is generated by default.
4614
4615 On a more complicated level, the following command uses `sgml-mode' as
4616 the parent, and then sets the variable `case-fold-search' to nil:
4617
4618 (define-derived-mode article-mode sgml-mode \"Article\"
4619 \"Major mode for editing technical articles.\"
4620 (setq case-fold-search nil))
4621
4622 Note that if the documentation string had been left out, it would have
4623 been generated automatically, with a reference to the keymap." nil (quote macro))
4622 4624
4623 ;;;*** 4625 ;;;***
4624 4626
4625 ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define 4627 ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define
4626 ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (14385 4628 ;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (14385
5444 5446
5445 ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags 5447 ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags
5446 ;;;;;; tags-query-replace tags-search tags-loop-continue next-file 5448 ;;;;;; tags-query-replace tags-search tags-loop-continue next-file
5447 ;;;;;; pop-tag-mark find-tag-regexp find-tag-other-frame find-tag-other-window 5449 ;;;;;; pop-tag-mark find-tag-regexp find-tag-other-frame find-tag-other-window
5448 ;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table 5450 ;;;;;; find-tag find-tag-noselect tags-table-files visit-tags-table
5449 ;;;;;; find-tag-default-function find-tag-hook tags-add-tables tags-table-list) 5451 ;;;;;; find-tag-default-function find-tag-hook tags-add-tables tags-table-list
5450 ;;;;;; "etags" "progmodes/etags.el" (14411 46114)) 5452 ;;;;;; tags-case-fold-search) "etags" "progmodes/etags.el" (14551
5453 ;;;;;; 24244))
5451 ;;; Generated autoloads from progmodes/etags.el 5454 ;;; Generated autoloads from progmodes/etags.el
5452 5455
5453 (defvar tags-file-name nil "\ 5456 (defvar tags-file-name nil "\
5454 *File name of tags table. 5457 *File name of tags table.
5455 To switch to a new tags table, setting this variable is sufficient. 5458 To switch to a new tags table, setting this variable is sufficient.
5456 If you set this variable, do not also set `tags-table-list'. 5459 If you set this variable, do not also set `tags-table-list'.
5457 Use the `etags' program to make a tags table file.") 5460 Use the `etags' program to make a tags table file.")
5458 (put 'tags-file-name 'variable-interactive "fVisit tags table: ") 5461 (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
5462
5463 (defvar tags-case-fold-search (quote default) "\
5464 *Whether tags operations should be case-sensitive.
5465 A value of t means case-insensitive, a value of nil means case-sensitive.
5466 Any other value means use the setting of `case-fold-search'.")
5459 5467
5460 (defvar tags-table-list nil "\ 5468 (defvar tags-table-list nil "\
5461 *List of file names of tags tables to search. 5469 *List of file names of tags tables to search.
5462 An element that is a directory means the file \"TAGS\" in that directory. 5470 An element that is a directory means the file \"TAGS\" in that directory.
5463 To switch to a new list of tags tables, setting this variable is sufficient. 5471 To switch to a new list of tags tables, setting this variable is sufficient.
6748 Fontify the current buffer the way the function `font-lock-mode' would." t nil) 6756 Fontify the current buffer the way the function `font-lock-mode' would." t nil)
6749 6757
6750 ;;;*** 6758 ;;;***
6751 6759
6752 ;;;### (autoloads (create-fontset-from-fontset-spec) "fontset" "international/fontset.el" 6760 ;;;### (autoloads (create-fontset-from-fontset-spec) "fontset" "international/fontset.el"
6753 ;;;;;; (14495 18024)) 6761 ;;;;;; (14551 28678))
6754 ;;; Generated autoloads from international/fontset.el 6762 ;;; Generated autoloads from international/fontset.el
6755 6763
6756 (autoload (quote create-fontset-from-fontset-spec) "fontset" "\ 6764 (autoload (quote create-fontset-from-fontset-spec) "fontset" "\
6757 Create a fontset from fontset specification string FONTSET-SPEC. 6765 Create a fontset from fontset specification string FONTSET-SPEC.
6758 FONTSET-SPEC is a string of the format: 6766 FONTSET-SPEC is a string of the format:
6759 FONTSET-NAME,CHARSET-NAME0:FONT-NAME0,CHARSET-NAME1:FONT-NAME1, ... 6767 FONTSET-NAME,CHARSET-NAME0:FONT-NAME0,CHARSET-NAME1:FONT-NAME1, ...
6760 Any number of SPACE, TAB, and NEWLINE can be put before and after commas. 6768 Any number of SPACE, TAB, and NEWLINE can be put before and after commas.
6761 6769
6762 Optional 2nd argument STYLE-VARIANT is a list of font styles 6770 Optional 2nd argument is ignored. It exists just for backward
6763 \(e.g. bold, italic) or the symbol t to specify all available styles. 6771 compatibility.
6764 If this argument is specified, fontsets which differs from
6765 FONTSET-NAME in styles are also created. An element of STYLE-VARIANT
6766 may be cons of style and a font name. In this case, the style variant
6767 fontset uses the font for ASCII character set.
6768 6772
6769 If this function attempts to create already existing fontset, error is 6773 If this function attempts to create already existing fontset, error is
6770 signaled unless the optional 3rd argument NOERROR is non-nil. 6774 signaled unless the optional 3rd argument NOERROR is non-nil.
6771 6775
6772 It returns a name of the created fontset." nil nil) 6776 It returns a name of the created fontset." nil nil)
9080 Once you're done editing the message, pressing \\[log-edit-done] will call 9084 Once you're done editing the message, pressing \\[log-edit-done] will call
9081 `log-edit-done' which will end up calling CALLBACK to do the actual commit." nil nil) 9085 `log-edit-done' which will end up calling CALLBACK to do the actual commit." nil nil)
9082 9086
9083 ;;;*** 9087 ;;;***
9084 9088
9085 ;;;### (autoloads nil "log-view" "log-view.el" (14537 49316)) 9089 ;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (14552
9090 ;;;;;; 48685))
9086 ;;; Generated autoloads from log-view.el 9091 ;;; Generated autoloads from log-view.el
9087 9092
9088 (autoload (quote log-view-mode) "log-view" "\ 9093 (autoload (quote log-view-mode) "log-view" "\
9089 Major mode for browsing CVS log output." t) 9094 Major mode for browsing CVS log output." t nil)
9090 9095
9091 ;;;*** 9096 ;;;***
9092 9097
9093 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer 9098 ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer
9094 ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (14440 9099 ;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (14440
9421 current header, calls `mail-complete-function' and passes prefix arg if any." t nil) 9426 current header, calls `mail-complete-function' and passes prefix arg if any." t nil)
9422 9427
9423 ;;;*** 9428 ;;;***
9424 9429
9425 ;;;### (autoloads (makefile-mode) "make-mode" "progmodes/make-mode.el" 9430 ;;;### (autoloads (makefile-mode) "make-mode" "progmodes/make-mode.el"
9426 ;;;;;; (14410 18641)) 9431 ;;;;;; (14554 2005))
9427 ;;; Generated autoloads from progmodes/make-mode.el 9432 ;;; Generated autoloads from progmodes/make-mode.el
9428 9433
9429 (autoload (quote makefile-mode) "make-mode" "\ 9434 (autoload (quote makefile-mode) "make-mode" "\
9430 Major mode for editing Makefiles. 9435 Major mode for editing Makefiles.
9431 This function ends by invoking the function(s) `makefile-mode-hook'. 9436 This function ends by invoking the function(s) `makefile-mode-hook'.
9972 9977
9973 ;;;### (autoloads (dump-codings dump-charsets mule-diag list-input-methods 9978 ;;;### (autoloads (dump-codings dump-charsets mule-diag list-input-methods
9974 ;;;;;; list-fontsets describe-fontset describe-font list-coding-categories 9979 ;;;;;; list-fontsets describe-fontset describe-font list-coding-categories
9975 ;;;;;; list-coding-systems describe-current-coding-system describe-current-coding-system-briefly 9980 ;;;;;; list-coding-systems describe-current-coding-system describe-current-coding-system-briefly
9976 ;;;;;; describe-coding-system list-charset-chars read-charset list-character-sets) 9981 ;;;;;; describe-coding-system list-charset-chars read-charset list-character-sets)
9977 ;;;;;; "mule-diag" "international/mule-diag.el" (14529 14422)) 9982 ;;;;;; "mule-diag" "international/mule-diag.el" (14551 28679))
9978 ;;; Generated autoloads from international/mule-diag.el 9983 ;;; Generated autoloads from international/mule-diag.el
9979 9984
9980 (autoload (quote list-character-sets) "mule-diag" "\ 9985 (autoload (quote list-character-sets) "mule-diag" "\
9981 Display a list of all character sets. 9986 Display a list of all character sets.
9982 9987
10704 (custom-add-load (quote pc-selection-mode) (quote pc-select)) 10709 (custom-add-load (quote pc-selection-mode) (quote pc-select))
10705 10710
10706 ;;;*** 10711 ;;;***
10707 10712
10708 ;;;### (autoloads (cvs-dired-use-hook cvs-status cvs-update cvs-examine 10713 ;;;### (autoloads (cvs-dired-use-hook cvs-status cvs-update cvs-examine
10709 ;;;;;; cvs-checkout) "pcvs" "pcvs.el" (14537 49318)) 10714 ;;;;;; cvs-checkout) "pcvs" "pcvs.el" (14552 48942))
10710 ;;; Generated autoloads from pcvs.el 10715 ;;; Generated autoloads from pcvs.el
10711 10716
10712 (autoload (quote cvs-checkout) "pcvs" "\ 10717 (autoload (quote cvs-checkout) "pcvs" "\
10713 Run a 'cvs checkout MODULES' in DIR. 10718 Run a 'cvs checkout MODULES' in DIR.
10714 Feed the output to a *cvs* buffer, display it in the current window, 10719 Feed the output to a *cvs* buffer, display it in the current window,
10748 ALWAYS means to always do it unless a prefix argument is given to the 10753 ALWAYS means to always do it unless a prefix argument is given to the
10749 command that prompted the opening of the directory. 10754 command that prompted the opening of the directory.
10750 Anything else means to do it only if the prefix arg is equal to this value.") 10755 Anything else means to do it only if the prefix arg is equal to this value.")
10751 10756
10752 (progn (defun cvs-dired-noselect (dir) "Run `cvs-examine' if DIR is a CVS administrative directory.\nThe exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp dir) (setq dir (directory-file-name dir)) (when (and (string= "CVS" (file-name-nondirectory dir)) (file-readable-p (expand-file-name "Entries" dir)) cvs-dired-use-hook (if (eq cvs-dired-use-hook (quote always)) (not current-prefix-arg) (equal current-prefix-arg cvs-dired-use-hook))) (save-excursion (cvs-examine (file-name-directory dir) t t)))))) 10757 (progn (defun cvs-dired-noselect (dir) "Run `cvs-examine' if DIR is a CVS administrative directory.\nThe exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp dir) (setq dir (directory-file-name dir)) (when (and (string= "CVS" (file-name-nondirectory dir)) (file-readable-p (expand-file-name "Entries" dir)) cvs-dired-use-hook (if (eq cvs-dired-use-hook (quote always)) (not current-prefix-arg) (equal current-prefix-arg cvs-dired-use-hook))) (save-excursion (cvs-examine (file-name-directory dir) t t))))))
10758
10759 ;;;***
10760
10761 ;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (14552 48685))
10762 ;;; Generated autoloads from pcvs-defs.el
10763
10764 (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) m))
10753 10765
10754 ;;;*** 10766 ;;;***
10755 10767
10756 ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" 10768 ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el"
10757 ;;;;;; (13639 61036)) 10769 ;;;;;; (13639 61036))
11083 ;;;### (autoloads (ps-extend-face ps-extend-face-list ps-setup ps-nb-pages-region 11095 ;;;### (autoloads (ps-extend-face ps-extend-face-list ps-setup ps-nb-pages-region
11084 ;;;;;; ps-nb-pages-buffer ps-line-lengths ps-despool ps-spool-region-with-faces 11096 ;;;;;; ps-nb-pages-buffer ps-line-lengths ps-despool ps-spool-region-with-faces
11085 ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer 11097 ;;;;;; ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer
11086 ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces 11098 ;;;;;; ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces
11087 ;;;;;; ps-print-buffer ps-print-customize ps-paper-type) "ps-print" 11099 ;;;;;; ps-print-buffer ps-print-customize ps-paper-type) "ps-print"
11088 ;;;;;; "ps-print.el" (14543 36973)) 11100 ;;;;;; "ps-print.el" (14554 7425))
11089 ;;; Generated autoloads from ps-print.el 11101 ;;; Generated autoloads from ps-print.el
11090 11102
11091 (defvar ps-paper-type (quote letter) "\ 11103 (defvar ps-paper-type (quote letter) "\
11092 *Specify the size of paper to format for. 11104 *Specify the size of paper to format for.
11093 Should be one of the paper types defined in `ps-page-dimensions-database', for 11105 Should be one of the paper types defined in `ps-page-dimensions-database', for
11220 ;;;*** 11232 ;;;***
11221 11233
11222 ;;;### (autoloads (quail-update-leim-list-file quail-defrule-internal 11234 ;;;### (autoloads (quail-update-leim-list-file quail-defrule-internal
11223 ;;;;;; quail-defrule quail-install-map quail-define-rules quail-set-keyboard-layout 11235 ;;;;;; quail-defrule quail-install-map quail-define-rules quail-set-keyboard-layout
11224 ;;;;;; quail-define-package quail-use-package) "quail" "international/quail.el" 11236 ;;;;;; quail-define-package quail-use-package) "quail" "international/quail.el"
11225 ;;;;;; (14423 51000)) 11237 ;;;;;; (14551 28773))
11226 ;;; Generated autoloads from international/quail.el 11238 ;;; Generated autoloads from international/quail.el
11227 11239
11228 (autoload (quote quail-use-package) "quail" "\ 11240 (autoload (quote quail-use-package) "quail" "\
11229 Start using Quail package PACKAGE-NAME. 11241 Start using Quail package PACKAGE-NAME.
11230 The remaining arguments are libraries to be loaded before using the package." nil nil) 11242 The remaining arguments are libraries to be loaded before using the package." nil nil)
11377 11389
11378 ;;;*** 11390 ;;;***
11379 11391
11380 ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls 11392 ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls
11381 ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url 11393 ;;;;;; quickurl-browse-url-ask quickurl-browse-url quickurl-add-url
11382 ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (14495 11394 ;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (14554
11383 ;;;;;; 17990)) 11395 ;;;;;; 7245))
11384 ;;; Generated autoloads from net/quickurl.el 11396 ;;; Generated autoloads from net/quickurl.el
11385 11397
11386 (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ 11398 (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\
11387 Example `quickurl-postfix' text that adds a local variable to the 11399 Example `quickurl-postfix' text that adds a local variable to the
11388 `quickurl-url-file' so that if you edit it by hand it will ensure that 11400 `quickurl-url-file' so that if you edit it by hand it will ensure that
12875 the defaults are used. These are (), [], {}, <> and `' for the 12887 the defaults are used. These are (), [], {}, <> and `' for the
12876 symmetrical ones, and the same character twice for the others." t nil) 12888 symmetrical ones, and the same character twice for the others." t nil)
12877 12889
12878 ;;;*** 12890 ;;;***
12879 12891
12880 ;;;### (autoloads (smerge-mode) "smerge-mode" "smerge-mode.el" (14415 12892 ;;;### (autoloads (smerge-mode) "smerge-mode" "smerge-mode.el" (14552
12881 ;;;;;; 42981)) 12893 ;;;;;; 48942))
12882 ;;; Generated autoloads from smerge-mode.el 12894 ;;; Generated autoloads from smerge-mode.el
12883 12895
12884 (autoload (quote smerge-mode) "smerge-mode" "\ 12896 (autoload (quote smerge-mode) "smerge-mode" "\
12885 Minor mode to simplify editing output from the diff3 program. 12897 Minor mode to simplify editing output from the diff3 program.
12886 \\{smerge-mode-map}" t nil) 12898 \\{smerge-mode-map}" t nil)