diff options
| author | Glenn Morris | 2013-10-30 09:29:36 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-10-30 09:29:36 -0700 |
| commit | 6c3d1c01b4e4d464fa9b369e904c900cd4290cbf (patch) | |
| tree | fb4a0e304af4d467db0e8313c5420c83f6d82859 | |
| parent | 13e9d2a7eaaea52aa1e87518221ad60493ba2c6a (diff) | |
| download | emacs-6c3d1c01b4e4d464fa9b369e904c900cd4290cbf.tar.gz emacs-6c3d1c01b4e4d464fa9b369e904c900cd4290cbf.zip | |
Revert auto-commit loaddefs weirdness
| -rw-r--r-- | lisp/dired.el | 542 | ||||
| -rw-r--r-- | lisp/emulation/tpu-edt.el | 29 | ||||
| -rw-r--r-- | lisp/htmlfontify.el | 22 | ||||
| -rw-r--r-- | lisp/ibuffer.el | 371 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 223 | ||||
| -rw-r--r-- | lisp/ps-print.el | 68 |
6 files changed, 1 insertions, 1254 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 129cde3da3c..27327352afb 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -3849,548 +3849,6 @@ Ask means pop up a menu for the user to select one of copy, move or link." | |||
| 3849 | 3849 | ||
| 3850 | ;;; Start of automatically extracted autoloads. | 3850 | ;;; Start of automatically extracted autoloads. |
| 3851 | 3851 | ||
| 3852 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" | ||
| 3853 | ;;;;;; "dired-aux.el" "04b4cb6bde3220f55574eb1d99ac0d29") | ||
| 3854 | ;;; Generated autoloads from dired-aux.el | ||
| 3855 | |||
| 3856 | (autoload 'dired-diff "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3857 | Compare file at point with file FILE using `diff'. | ||
| 3858 | If called interactively, prompt for FILE. If the file at point | ||
| 3859 | has a backup file, use that as the default. If the file at point | ||
| 3860 | is a backup file, use its original. If the mark is active | ||
| 3861 | in Transient Mark mode, use the file at the mark as the default. | ||
| 3862 | \(That's the mark set by \\[set-mark-command], not by Dired's | ||
| 3863 | \\[dired-mark] command.) | ||
| 3864 | |||
| 3865 | FILE is the first file given to `diff'. The file at point | ||
| 3866 | is the second file given to `diff'. | ||
| 3867 | |||
| 3868 | With prefix arg, prompt for second argument SWITCHES, which is | ||
| 3869 | the string of command switches for the third argument of `diff'. | ||
| 3870 | |||
| 3871 | \(fn FILE &optional SWITCHES)" t nil) | ||
| 3872 | |||
| 3873 | (autoload 'dired-backup-diff "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3874 | Diff this file with its backup file or vice versa. | ||
| 3875 | Uses the latest backup, if there are several numerical backups. | ||
| 3876 | If this file is a backup, diff it with its original. | ||
| 3877 | The backup file is the first file given to `diff'. | ||
| 3878 | With prefix arg, prompt for argument SWITCHES which is options for `diff'. | ||
| 3879 | |||
| 3880 | \(fn &optional SWITCHES)" t nil) | ||
| 3881 | |||
| 3882 | (autoload 'dired-compare-directories "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3883 | Mark files with different file attributes in two dired buffers. | ||
| 3884 | Compare file attributes of files in the current directory | ||
| 3885 | with file attributes in directory DIR2 using PREDICATE on pairs of files | ||
| 3886 | with the same name. Mark files for which PREDICATE returns non-nil. | ||
| 3887 | Mark files with different names if PREDICATE is nil (or interactively | ||
| 3888 | with empty input at the predicate prompt). | ||
| 3889 | |||
| 3890 | PREDICATE is a Lisp expression that can refer to the following variables: | ||
| 3891 | |||
| 3892 | size1, size2 - file size in bytes | ||
| 3893 | mtime1, mtime2 - last modification time in seconds, as a float | ||
| 3894 | fa1, fa2 - list of file attributes | ||
| 3895 | returned by function `file-attributes' | ||
| 3896 | |||
| 3897 | where 1 refers to attribute of file in the current dired buffer | ||
| 3898 | and 2 to attribute of file in second dired buffer. | ||
| 3899 | |||
| 3900 | Examples of PREDICATE: | ||
| 3901 | |||
| 3902 | (> mtime1 mtime2) - mark newer files | ||
| 3903 | (not (= size1 size2)) - mark files with different sizes | ||
| 3904 | (not (string= (nth 8 fa1) (nth 8 fa2))) - mark files with different modes | ||
| 3905 | (not (and (= (nth 2 fa1) (nth 2 fa2)) - mark files with different UID | ||
| 3906 | (= (nth 3 fa1) (nth 3 fa2)))) and GID. | ||
| 3907 | |||
| 3908 | \(fn DIR2 PREDICATE)" t nil) | ||
| 3909 | |||
| 3910 | (autoload 'dired-do-chmod "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3911 | Change the mode of the marked (or next ARG) files. | ||
| 3912 | Symbolic modes like `g+w' are allowed. | ||
| 3913 | Type M-n to pull the file attributes of the file at point | ||
| 3914 | into the minibuffer. | ||
| 3915 | |||
| 3916 | \(fn &optional ARG)" t nil) | ||
| 3917 | |||
| 3918 | (autoload 'dired-do-chgrp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3919 | Change the group of the marked (or next ARG) files. | ||
| 3920 | Type M-n to pull the file attributes of the file at point | ||
| 3921 | into the minibuffer. | ||
| 3922 | |||
| 3923 | \(fn &optional ARG)" t nil) | ||
| 3924 | |||
| 3925 | (autoload 'dired-do-chown "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3926 | Change the owner of the marked (or next ARG) files. | ||
| 3927 | Type M-n to pull the file attributes of the file at point | ||
| 3928 | into the minibuffer. | ||
| 3929 | |||
| 3930 | \(fn &optional ARG)" t nil) | ||
| 3931 | |||
| 3932 | (autoload 'dired-do-touch "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3933 | Change the timestamp of the marked (or next ARG) files. | ||
| 3934 | This calls touch. | ||
| 3935 | Type M-n to pull the file attributes of the file at point | ||
| 3936 | into the minibuffer. | ||
| 3937 | |||
| 3938 | \(fn &optional ARG)" t nil) | ||
| 3939 | |||
| 3940 | (autoload 'dired-do-print "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3941 | Print the marked (or next ARG) files. | ||
| 3942 | Uses the shell command coming from variables `lpr-command' and | ||
| 3943 | `lpr-switches' as default. | ||
| 3944 | |||
| 3945 | \(fn &optional ARG)" t nil) | ||
| 3946 | |||
| 3947 | (autoload 'dired-clean-directory "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3948 | Flag numerical backups for deletion. | ||
| 3949 | Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. | ||
| 3950 | Positive prefix arg KEEP overrides `dired-kept-versions'; | ||
| 3951 | Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. | ||
| 3952 | |||
| 3953 | To clear the flags on these files, you can use \\[dired-flag-backup-files] | ||
| 3954 | with a prefix argument. | ||
| 3955 | |||
| 3956 | \(fn KEEP)" t nil) | ||
| 3957 | |||
| 3958 | (autoload 'dired-do-async-shell-command "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3959 | Run a shell command COMMAND on the marked files asynchronously. | ||
| 3960 | |||
| 3961 | Like `dired-do-shell-command', but adds `&' at the end of COMMAND | ||
| 3962 | to execute it asynchronously. | ||
| 3963 | |||
| 3964 | When operating on multiple files, asynchronous commands | ||
| 3965 | are executed in the background on each file in parallel. | ||
| 3966 | In shell syntax this means separating the individual commands | ||
| 3967 | with `&'. However, when COMMAND ends in `;' or `;&' then commands | ||
| 3968 | are executed in the background on each file sequentially waiting | ||
| 3969 | for each command to terminate before running the next command. | ||
| 3970 | In shell syntax this means separating the individual commands with `;'. | ||
| 3971 | |||
| 3972 | The output appears in the buffer `*Async Shell Command*'. | ||
| 3973 | |||
| 3974 | \(fn COMMAND &optional ARG FILE-LIST)" t nil) | ||
| 3975 | |||
| 3976 | (autoload 'dired-do-shell-command "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 3977 | Run a shell command COMMAND on the marked files. | ||
| 3978 | If no files are marked or a numeric prefix arg is given, | ||
| 3979 | the next ARG files are used. Just \\[universal-argument] means the current file. | ||
| 3980 | The prompt mentions the file(s) or the marker, as appropriate. | ||
| 3981 | |||
| 3982 | If there is a `*' in COMMAND, surrounded by whitespace, this runs | ||
| 3983 | COMMAND just once with the entire file list substituted there. | ||
| 3984 | |||
| 3985 | If there is no `*', but there is a `?' in COMMAND, surrounded by | ||
| 3986 | whitespace, this runs COMMAND on each file individually with the | ||
| 3987 | file name substituted for `?'. | ||
| 3988 | |||
| 3989 | Otherwise, this runs COMMAND on each file individually with the | ||
| 3990 | file name added at the end of COMMAND (separated by a space). | ||
| 3991 | |||
| 3992 | `*' and `?' when not surrounded by whitespace have no special | ||
| 3993 | significance for `dired-do-shell-command', and are passed through | ||
| 3994 | normally to the shell, but you must confirm first. | ||
| 3995 | |||
| 3996 | If you want to use `*' as a shell wildcard with whitespace around | ||
| 3997 | it, write `*\"\"' in place of just `*'. This is equivalent to just | ||
| 3998 | `*' in the shell, but avoids Dired's special handling. | ||
| 3999 | |||
| 4000 | If COMMAND ends in `&', `;', or `;&', it is executed in the | ||
| 4001 | background asynchronously, and the output appears in the buffer | ||
| 4002 | `*Async Shell Command*'. When operating on multiple files and COMMAND | ||
| 4003 | ends in `&', the shell command is executed on each file in parallel. | ||
| 4004 | However, when COMMAND ends in `;' or `;&' then commands are executed | ||
| 4005 | in the background on each file sequentially waiting for each command | ||
| 4006 | to terminate before running the next command. You can also use | ||
| 4007 | `dired-do-async-shell-command' that automatically adds `&'. | ||
| 4008 | |||
| 4009 | Otherwise, COMMAND is executed synchronously, and the output | ||
| 4010 | appears in the buffer `*Shell Command Output*'. | ||
| 4011 | |||
| 4012 | This feature does not try to redisplay Dired buffers afterward, as | ||
| 4013 | there's no telling what files COMMAND may have changed. | ||
| 4014 | Type \\[dired-do-redisplay] to redisplay the marked files. | ||
| 4015 | |||
| 4016 | When COMMAND runs, its working directory is the top-level directory | ||
| 4017 | of the Dired buffer, so output files usually are created there | ||
| 4018 | instead of in a subdir. | ||
| 4019 | |||
| 4020 | In a noninteractive call (from Lisp code), you must specify | ||
| 4021 | the list of file names explicitly with the FILE-LIST argument, which | ||
| 4022 | can be produced by `dired-get-marked-files', for example. | ||
| 4023 | |||
| 4024 | \(fn COMMAND &optional ARG FILE-LIST)" t nil) | ||
| 4025 | |||
| 4026 | (autoload 'dired-run-shell-command "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4027 | |||
| 4028 | |||
| 4029 | \(fn COMMAND)" nil nil) | ||
| 4030 | |||
| 4031 | (autoload 'dired-do-kill-lines "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4032 | Kill all marked lines (not the files). | ||
| 4033 | With a prefix argument, kill that many lines starting with the current line. | ||
| 4034 | \(A negative argument kills backward.) | ||
| 4035 | If you use this command with a prefix argument to kill the line | ||
| 4036 | for a file that is a directory, which you have inserted in the | ||
| 4037 | Dired buffer as a subdirectory, then it deletes that subdirectory | ||
| 4038 | from the buffer as well. | ||
| 4039 | To kill an entire subdirectory (without killing its line in the | ||
| 4040 | parent directory), go to its directory header line and use this | ||
| 4041 | command with a prefix argument (the value does not matter). | ||
| 4042 | |||
| 4043 | \(fn &optional ARG FMT)" t nil) | ||
| 4044 | |||
| 4045 | (autoload 'dired-compress-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4046 | |||
| 4047 | |||
| 4048 | \(fn FILE)" nil nil) | ||
| 4049 | |||
| 4050 | (autoload 'dired-query "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4051 | Format PROMPT with ARGS, query user, and store the result in SYM. | ||
| 4052 | The return value is either nil or t. | ||
| 4053 | |||
| 4054 | The user may type y or SPC to accept once; n or DEL to skip once; | ||
| 4055 | ! to accept this and subsequent queries; or q or ESC to decline | ||
| 4056 | this and subsequent queries. | ||
| 4057 | |||
| 4058 | If SYM is already bound to a non-nil value, this function may | ||
| 4059 | return automatically without querying the user. If SYM is !, | ||
| 4060 | return t; if SYM is q or ESC, return nil. | ||
| 4061 | |||
| 4062 | \(fn SYM PROMPT &rest ARGS)" nil nil) | ||
| 4063 | |||
| 4064 | (autoload 'dired-do-compress "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4065 | Compress or uncompress marked (or next ARG) files. | ||
| 4066 | |||
| 4067 | \(fn &optional ARG)" t nil) | ||
| 4068 | |||
| 4069 | (autoload 'dired-do-byte-compile "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4070 | Byte compile marked (or next ARG) Emacs Lisp files. | ||
| 4071 | |||
| 4072 | \(fn &optional ARG)" t nil) | ||
| 4073 | |||
| 4074 | (autoload 'dired-do-load "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4075 | Load the marked (or next ARG) Emacs Lisp files. | ||
| 4076 | |||
| 4077 | \(fn &optional ARG)" t nil) | ||
| 4078 | |||
| 4079 | (autoload 'dired-do-redisplay "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4080 | Redisplay all marked (or next ARG) files. | ||
| 4081 | If on a subdir line, redisplay that subdirectory. In that case, | ||
| 4082 | a prefix arg lets you edit the `ls' switches used for the new listing. | ||
| 4083 | |||
| 4084 | Dired remembers switches specified with a prefix arg, so that reverting | ||
| 4085 | the buffer will not reset them. However, using `dired-undo' to re-insert | ||
| 4086 | or delete subdirectories can bypass this machinery. Hence, you sometimes | ||
| 4087 | may have to reset some subdirectory switches after a `dired-undo'. | ||
| 4088 | You can reset all subdirectory switches to the default using | ||
| 4089 | \\<dired-mode-map>\\[dired-reset-subdir-switches]. | ||
| 4090 | See Info node `(emacs)Subdir switches' for more details. | ||
| 4091 | |||
| 4092 | \(fn &optional ARG TEST-FOR-SUBDIR)" t nil) | ||
| 4093 | |||
| 4094 | (autoload 'dired-add-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4095 | |||
| 4096 | |||
| 4097 | \(fn FILENAME &optional MARKER-CHAR)" nil nil) | ||
| 4098 | |||
| 4099 | (autoload 'dired-remove-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4100 | |||
| 4101 | |||
| 4102 | \(fn FILE)" nil nil) | ||
| 4103 | |||
| 4104 | (autoload 'dired-relist-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4105 | Create or update the line for FILE in all Dired buffers it would belong in. | ||
| 4106 | |||
| 4107 | \(fn FILE)" nil nil) | ||
| 4108 | |||
| 4109 | (autoload 'dired-copy-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4110 | |||
| 4111 | |||
| 4112 | \(fn FROM TO OK-FLAG)" nil nil) | ||
| 4113 | |||
| 4114 | (autoload 'dired-rename-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4115 | |||
| 4116 | |||
| 4117 | \(fn FILE NEWNAME OK-IF-ALREADY-EXISTS)" nil nil) | ||
| 4118 | |||
| 4119 | (autoload 'dired-create-directory "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4120 | Create a directory called DIRECTORY. | ||
| 4121 | If DIRECTORY already exists, signal an error. | ||
| 4122 | |||
| 4123 | \(fn DIRECTORY)" t nil) | ||
| 4124 | |||
| 4125 | (autoload 'dired-do-copy "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4126 | Copy all marked (or next ARG) files, or copy the current file. | ||
| 4127 | When operating on just the current file, prompt for the new name. | ||
| 4128 | |||
| 4129 | When operating on multiple or marked files, prompt for a target | ||
| 4130 | directory, and make the new copies in that directory, with the | ||
| 4131 | same names as the original files. The initial suggestion for the | ||
| 4132 | target directory is the Dired buffer's current directory (or, if | ||
| 4133 | `dired-dwim-target' is non-nil, the current directory of a | ||
| 4134 | neighboring Dired window). | ||
| 4135 | |||
| 4136 | If `dired-copy-preserve-time' is non-nil, this command preserves | ||
| 4137 | the modification time of each old file in the copy, similar to | ||
| 4138 | the \"-p\" option for the \"cp\" shell command. | ||
| 4139 | |||
| 4140 | This command copies symbolic links by creating new ones, similar | ||
| 4141 | to the \"-d\" option for the \"cp\" shell command. | ||
| 4142 | |||
| 4143 | \(fn &optional ARG)" t nil) | ||
| 4144 | |||
| 4145 | (autoload 'dired-do-symlink "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4146 | Make symbolic links to current file or all marked (or next ARG) files. | ||
| 4147 | When operating on just the current file, you specify the new name. | ||
| 4148 | When operating on multiple or marked files, you specify a directory | ||
| 4149 | and new symbolic links are made in that directory | ||
| 4150 | with the same names that the files currently have. The default | ||
| 4151 | suggested for the target directory depends on the value of | ||
| 4152 | `dired-dwim-target', which see. | ||
| 4153 | |||
| 4154 | For relative symlinks, use \\[dired-do-relsymlink]. | ||
| 4155 | |||
| 4156 | \(fn &optional ARG)" t nil) | ||
| 4157 | |||
| 4158 | (autoload 'dired-do-hardlink "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4159 | Add names (hard links) current file or all marked (or next ARG) files. | ||
| 4160 | When operating on just the current file, you specify the new name. | ||
| 4161 | When operating on multiple or marked files, you specify a directory | ||
| 4162 | and new hard links are made in that directory | ||
| 4163 | with the same names that the files currently have. The default | ||
| 4164 | suggested for the target directory depends on the value of | ||
| 4165 | `dired-dwim-target', which see. | ||
| 4166 | |||
| 4167 | \(fn &optional ARG)" t nil) | ||
| 4168 | |||
| 4169 | (autoload 'dired-do-rename "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4170 | Rename current file or all marked (or next ARG) files. | ||
| 4171 | When renaming just the current file, you specify the new name. | ||
| 4172 | When renaming multiple or marked files, you specify a directory. | ||
| 4173 | This command also renames any buffers that are visiting the files. | ||
| 4174 | The default suggested for the target directory depends on the value | ||
| 4175 | of `dired-dwim-target', which see. | ||
| 4176 | |||
| 4177 | \(fn &optional ARG)" t nil) | ||
| 4178 | |||
| 4179 | (autoload 'dired-do-rename-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4180 | Rename selected files whose names match REGEXP to NEWNAME. | ||
| 4181 | |||
| 4182 | With non-zero prefix argument ARG, the command operates on the next ARG | ||
| 4183 | files. Otherwise, it operates on all the marked files, or the current | ||
| 4184 | file if none are marked. | ||
| 4185 | |||
| 4186 | As each match is found, the user must type a character saying | ||
| 4187 | what to do with it. For directions, type \\[help-command] at that time. | ||
| 4188 | NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'. | ||
| 4189 | REGEXP defaults to the last regexp used. | ||
| 4190 | |||
| 4191 | With a zero prefix arg, renaming by regexp affects the absolute file name. | ||
| 4192 | Normally, only the non-directory part of the file name is used and changed. | ||
| 4193 | |||
| 4194 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | ||
| 4195 | |||
| 4196 | (autoload 'dired-do-copy-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4197 | Copy selected files whose names match REGEXP to NEWNAME. | ||
| 4198 | See function `dired-do-rename-regexp' for more info. | ||
| 4199 | |||
| 4200 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | ||
| 4201 | |||
| 4202 | (autoload 'dired-do-hardlink-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4203 | Hardlink selected files whose names match REGEXP to NEWNAME. | ||
| 4204 | See function `dired-do-rename-regexp' for more info. | ||
| 4205 | |||
| 4206 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | ||
| 4207 | |||
| 4208 | (autoload 'dired-do-symlink-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4209 | Symlink selected files whose names match REGEXP to NEWNAME. | ||
| 4210 | See function `dired-do-rename-regexp' for more info. | ||
| 4211 | |||
| 4212 | \(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil) | ||
| 4213 | |||
| 4214 | (autoload 'dired-upcase "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4215 | Rename all marked (or next ARG) files to upper case. | ||
| 4216 | |||
| 4217 | \(fn &optional ARG)" t nil) | ||
| 4218 | |||
| 4219 | (autoload 'dired-downcase "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4220 | Rename all marked (or next ARG) files to lower case. | ||
| 4221 | |||
| 4222 | \(fn &optional ARG)" t nil) | ||
| 4223 | |||
| 4224 | (autoload 'dired-maybe-insert-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4225 | Insert this subdirectory into the same dired buffer. | ||
| 4226 | If it is already present, just move to it (type \\[dired-do-redisplay] to refresh), | ||
| 4227 | else inserts it at its natural place (as `ls -lR' would have done). | ||
| 4228 | With a prefix arg, you may edit the ls switches used for this listing. | ||
| 4229 | You can add `R' to the switches to expand the whole tree starting at | ||
| 4230 | this subdirectory. | ||
| 4231 | This function takes some pains to conform to `ls -lR' output. | ||
| 4232 | |||
| 4233 | Dired remembers switches specified with a prefix arg, so that reverting | ||
| 4234 | the buffer will not reset them. However, using `dired-undo' to re-insert | ||
| 4235 | or delete subdirectories can bypass this machinery. Hence, you sometimes | ||
| 4236 | may have to reset some subdirectory switches after a `dired-undo'. | ||
| 4237 | You can reset all subdirectory switches to the default using | ||
| 4238 | \\<dired-mode-map>\\[dired-reset-subdir-switches]. | ||
| 4239 | See Info node `(emacs)Subdir switches' for more details. | ||
| 4240 | |||
| 4241 | \(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil) | ||
| 4242 | |||
| 4243 | (autoload 'dired-insert-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4244 | Insert this subdirectory into the same Dired buffer. | ||
| 4245 | If it is already present, overwrite the previous entry; | ||
| 4246 | otherwise, insert it at its natural place (as `ls -lR' would | ||
| 4247 | have done). | ||
| 4248 | With a prefix arg, you may edit the `ls' switches used for this listing. | ||
| 4249 | You can add `R' to the switches to expand the whole tree starting at | ||
| 4250 | this subdirectory. | ||
| 4251 | This function takes some pains to conform to `ls -lR' output. | ||
| 4252 | |||
| 4253 | \(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil) | ||
| 4254 | |||
| 4255 | (autoload 'dired-prev-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4256 | Go to previous subdirectory, regardless of level. | ||
| 4257 | When called interactively and not on a subdir line, go to this subdir's line. | ||
| 4258 | |||
| 4259 | \(fn ARG &optional NO-ERROR-IF-NOT-FOUND NO-SKIP)" t nil) | ||
| 4260 | |||
| 4261 | (autoload 'dired-goto-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4262 | Go to end of header line of DIR in this dired buffer. | ||
| 4263 | Return value of point on success, otherwise return nil. | ||
| 4264 | The next char is either \\n, or \\r if DIR is hidden. | ||
| 4265 | |||
| 4266 | \(fn DIR)" t nil) | ||
| 4267 | |||
| 4268 | (autoload 'dired-mark-subdir-files "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4269 | Mark all files except `.' and `..' in current subdirectory. | ||
| 4270 | If the Dired buffer shows multiple directories, this command | ||
| 4271 | marks the files listed in the subdirectory that point is in. | ||
| 4272 | |||
| 4273 | \(fn)" t nil) | ||
| 4274 | |||
| 4275 | (autoload 'dired-kill-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4276 | Remove all lines of current subdirectory. | ||
| 4277 | Lower levels are unaffected. | ||
| 4278 | |||
| 4279 | \(fn &optional REMEMBER-MARKS)" t nil) | ||
| 4280 | |||
| 4281 | (autoload 'dired-tree-up "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4282 | Go up ARG levels in the dired tree. | ||
| 4283 | |||
| 4284 | \(fn ARG)" t nil) | ||
| 4285 | |||
| 4286 | (autoload 'dired-tree-down "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4287 | Go down in the dired tree. | ||
| 4288 | |||
| 4289 | \(fn)" t nil) | ||
| 4290 | |||
| 4291 | (autoload 'dired-hide-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4292 | Hide or unhide the current subdirectory and move to next directory. | ||
| 4293 | Optional prefix arg is a repeat factor. | ||
| 4294 | Use \\[dired-hide-all] to (un)hide all directories. | ||
| 4295 | |||
| 4296 | \(fn ARG)" t nil) | ||
| 4297 | |||
| 4298 | (autoload 'dired-hide-all "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4299 | Hide all subdirectories, leaving only their header lines. | ||
| 4300 | If there is already something hidden, make everything visible again. | ||
| 4301 | Use \\[dired-hide-subdir] to (un)hide a particular subdirectory. | ||
| 4302 | |||
| 4303 | \(fn &optional IGNORED)" t nil) | ||
| 4304 | |||
| 4305 | (autoload 'dired-isearch-filenames-setup "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4306 | Set up isearch to search in Dired file names. | ||
| 4307 | Intended to be added to `isearch-mode-hook'. | ||
| 4308 | |||
| 4309 | \(fn)" nil nil) | ||
| 4310 | |||
| 4311 | (autoload 'dired-isearch-filenames "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4312 | Search for a string using Isearch only in file names in the Dired buffer. | ||
| 4313 | |||
| 4314 | \(fn)" t nil) | ||
| 4315 | |||
| 4316 | (autoload 'dired-isearch-filenames-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4317 | Search for a regexp using Isearch only in file names in the Dired buffer. | ||
| 4318 | |||
| 4319 | \(fn)" t nil) | ||
| 4320 | |||
| 4321 | (autoload 'dired-do-isearch "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4322 | Search for a string through all marked files using Isearch. | ||
| 4323 | |||
| 4324 | \(fn)" t nil) | ||
| 4325 | |||
| 4326 | (autoload 'dired-do-isearch-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4327 | Search for a regexp through all marked files using Isearch. | ||
| 4328 | |||
| 4329 | \(fn)" t nil) | ||
| 4330 | |||
| 4331 | (autoload 'dired-do-search "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4332 | Search through all marked files for a match for REGEXP. | ||
| 4333 | Stops when a match is found. | ||
| 4334 | To continue searching for next match, use command \\[tags-loop-continue]. | ||
| 4335 | |||
| 4336 | \(fn REGEXP)" t nil) | ||
| 4337 | |||
| 4338 | (autoload 'dired-do-query-replace-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4339 | Do `query-replace-regexp' of FROM with TO, on all marked files. | ||
| 4340 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | ||
| 4341 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace | ||
| 4342 | with the command \\[tags-loop-continue]. | ||
| 4343 | |||
| 4344 | \(fn FROM TO &optional DELIMITED)" t nil) | ||
| 4345 | |||
| 4346 | (autoload 'dired-show-file-type "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\ | ||
| 4347 | Print the type of FILE, according to the `file' command. | ||
| 4348 | If you give a prefix to this command, and FILE is a symbolic | ||
| 4349 | link, then the type of the file linked to by FILE is printed | ||
| 4350 | instead. | ||
| 4351 | |||
| 4352 | \(fn FILE &optional DEREF-SYMLINKS)" t nil) | ||
| 4353 | |||
| 4354 | ;;;*** | ||
| 4355 | |||
| 4356 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" | ||
| 4357 | ;;;;;; "dired-x.el" "732d08c173295dd14a0736fa222f532a") | ||
| 4358 | ;;; Generated autoloads from dired-x.el | ||
| 4359 | |||
| 4360 | (autoload 'dired-jump "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" "\ | ||
| 4361 | Jump to Dired buffer corresponding to current buffer. | ||
| 4362 | If in a file, Dired the current directory and move to file's line. | ||
| 4363 | If in Dired already, pop up a level and goto old directory's line. | ||
| 4364 | In case the proper Dired file line cannot be found, refresh the dired | ||
| 4365 | buffer and try again. | ||
| 4366 | When OTHER-WINDOW is non-nil, jump to Dired buffer in other window. | ||
| 4367 | Interactively with prefix argument, read FILE-NAME and | ||
| 4368 | move to its line in dired. | ||
| 4369 | |||
| 4370 | \(fn &optional OTHER-WINDOW FILE-NAME)" t nil) | ||
| 4371 | |||
| 4372 | (autoload 'dired-jump-other-window "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" "\ | ||
| 4373 | Like \\[dired-jump] (`dired-jump') but in other window. | ||
| 4374 | |||
| 4375 | \(fn &optional FILE-NAME)" t nil) | ||
| 4376 | |||
| 4377 | (autoload 'dired-do-relsymlink "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" "\ | ||
| 4378 | Relative symlink all marked (or next ARG) files into a directory. | ||
| 4379 | Otherwise make a relative symbolic link to the current file. | ||
| 4380 | This creates relative symbolic links like | ||
| 4381 | |||
| 4382 | foo -> ../bar/foo | ||
| 4383 | |||
| 4384 | not absolute ones like | ||
| 4385 | |||
| 4386 | foo -> /ugly/file/name/that/may/change/any/day/bar/foo | ||
| 4387 | |||
| 4388 | For absolute symlinks, use \\[dired-do-symlink]. | ||
| 4389 | |||
| 4390 | \(fn &optional ARG)" t nil) | ||
| 4391 | |||
| 4392 | ;;;*** | ||
| 4393 | |||
| 4394 | ;;;### (autoloads nil "dired-aux" "dired-aux.el" "04b4cb6bde3220f55574eb1d99ac0d29") | 3852 | ;;;### (autoloads nil "dired-aux" "dired-aux.el" "04b4cb6bde3220f55574eb1d99ac0d29") |
| 4395 | ;;; Generated autoloads from dired-aux.el | 3853 | ;;; Generated autoloads from dired-aux.el |
| 4396 | 3854 | ||
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el index f863d64107f..e2fcf2eae41 100644 --- a/lisp/emulation/tpu-edt.el +++ b/lisp/emulation/tpu-edt.el | |||
| @@ -2438,35 +2438,6 @@ If FILE is nil, try to load a default file. The default file names are | |||
| 2438 | (setq tpu-edt-mode nil)) | 2438 | (setq tpu-edt-mode nil)) |
| 2439 | 2439 | ||
| 2440 | 2440 | ||
| 2441 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" | ||
| 2442 | ;;;;;; "tpu-extras.el" "ae3bca6f21640b5713a7c58c40f30847") | ||
| 2443 | ;;; Generated autoloads from tpu-extras.el | ||
| 2444 | |||
| 2445 | (autoload 'tpu-cursor-free-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\ | ||
| 2446 | Minor mode to allow the cursor to move freely about the screen. | ||
| 2447 | With a prefix argument ARG, enable the mode if ARG is positive, | ||
| 2448 | and disable it otherwise. If called from Lisp, enable the mode | ||
| 2449 | if ARG is omitted or nil. | ||
| 2450 | |||
| 2451 | \(fn &optional ARG)" t nil) | ||
| 2452 | |||
| 2453 | (autoload 'tpu-set-scroll-margins "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\ | ||
| 2454 | Set scroll margins. | ||
| 2455 | |||
| 2456 | \(fn TOP BOTTOM)" t nil) | ||
| 2457 | |||
| 2458 | (autoload 'tpu-set-cursor-free "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\ | ||
| 2459 | Allow the cursor to move freely about the screen. | ||
| 2460 | |||
| 2461 | \(fn)" t nil) | ||
| 2462 | |||
| 2463 | (autoload 'tpu-set-cursor-bound "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\ | ||
| 2464 | Constrain the cursor to the flow of the text. | ||
| 2465 | |||
| 2466 | \(fn)" t nil) | ||
| 2467 | |||
| 2468 | ;;;*** | ||
| 2469 | |||
| 2470 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins | 2441 | ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins |
| 2471 | ;;;;;; tpu-cursor-free-mode) "tpu-extras" "tpu-extras.el" "ae3bca6f21640b5713a7c58c40f30847") | 2442 | ;;;;;; tpu-cursor-free-mode) "tpu-extras" "tpu-extras.el" "ae3bca6f21640b5713a7c58c40f30847") |
| 2472 | ;;; Generated autoloads from tpu-extras.el | 2443 | ;;; Generated autoloads from tpu-extras.el |
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index 848edc72382..76772f10d21 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el | |||
| @@ -2411,29 +2411,9 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'." | |||
| 2411 | (load file 'NOERROR nil nil) )) | 2411 | (load file 'NOERROR nil nil) )) |
| 2412 | 2412 | ||
| 2413 | 2413 | ||
| 2414 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap" | 2414 | ;;;### (autoloads nil "hfy-cmap" "hfy-cmap.el" "df4e418d0d8749ead9d32bb2c7a5bd56") |
| 2415 | ;;;;;; "hfy-cmap.el" "df4e418d0d8749ead9d32bb2c7a5bd56") | ||
| 2416 | ;;; Generated autoloads from hfy-cmap.el | 2415 | ;;; Generated autoloads from hfy-cmap.el |
| 2417 | (push (purecopy '(htmlfontify 0 20)) package--builtin-versions) | 2416 | (push (purecopy '(htmlfontify 0 20)) package--builtin-versions) |
| 2418 | (autoload 'htmlfontify-load-rgb-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap" "\ | ||
| 2419 | Load an X11 style rgb.txt FILE. | ||
| 2420 | Search `hfy-rgb-load-path' if FILE is not specified. | ||
| 2421 | Loads the variable `hfy-rgb-txt-colour-map', which is used by | ||
| 2422 | `hfy-fallback-colour-values'. | ||
| 2423 | |||
| 2424 | \(fn &optional FILE)" t nil) | ||
| 2425 | |||
| 2426 | (autoload 'hfy-fallback-colour-values "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap" "\ | ||
| 2427 | Use a fallback method for obtaining the rgb values for a color. | ||
| 2428 | |||
| 2429 | \(fn COLOUR-STRING)" nil nil) | ||
| 2430 | |||
| 2431 | ;;;*** | ||
| 2432 | |||
| 2433 | ;;;### (autoloads (hfy-fallback-colour-values htmlfontify-load-rgb-file) | ||
| 2434 | ;;;;;; "hfy-cmap" "hfy-cmap.el" "3f97eeabe72027099da579f6ef9ae0bd") | ||
| 2435 | ;;; Generated autoloads from hfy-cmap.el | ||
| 2436 | |||
| 2437 | (autoload 'htmlfontify-load-rgb-file "hfy-cmap" "\ | 2417 | (autoload 'htmlfontify-load-rgb-file "hfy-cmap" "\ |
| 2438 | Load an X11 style rgb.txt FILE. | 2418 | Load an X11 style rgb.txt FILE. |
| 2439 | Search `hfy-rgb-load-path' if FILE is not specified. | 2419 | Search `hfy-rgb-load-path' if FILE is not specified. |
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 1995c107dac..cde6e2e3d43 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -2628,377 +2628,6 @@ will be inserted before the group at point." | |||
| 2628 | 2628 | ||
| 2629 | ;;; Start of automatically extracted autoloads. | 2629 | ;;; Start of automatically extracted autoloads. |
| 2630 | 2630 | ||
| 2631 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" | ||
| 2632 | ;;;;;; "ibuf-ext.el" "d06b2735a74954e0c6922a811de7608c") | ||
| 2633 | ;;; Generated autoloads from ibuf-ext.el | ||
| 2634 | |||
| 2635 | (autoload 'ibuffer-auto-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2636 | Toggle use of Ibuffer's auto-update facility (Ibuffer Auto mode). | ||
| 2637 | With a prefix argument ARG, enable Ibuffer Auto mode if ARG is | ||
| 2638 | positive, and disable it otherwise. If called from Lisp, enable | ||
| 2639 | the mode if ARG is omitted or nil. | ||
| 2640 | |||
| 2641 | \(fn &optional ARG)" t nil) | ||
| 2642 | |||
| 2643 | (autoload 'ibuffer-mouse-filter-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2644 | Enable or disable filtering by the major mode chosen via mouse. | ||
| 2645 | |||
| 2646 | \(fn EVENT)" t nil) | ||
| 2647 | |||
| 2648 | (autoload 'ibuffer-interactive-filter-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2649 | Enable or disable filtering by the major mode at point. | ||
| 2650 | |||
| 2651 | \(fn EVENT-OR-POINT)" t nil) | ||
| 2652 | |||
| 2653 | (autoload 'ibuffer-mouse-toggle-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2654 | Toggle the display status of the filter group chosen with the mouse. | ||
| 2655 | |||
| 2656 | \(fn EVENT)" t nil) | ||
| 2657 | |||
| 2658 | (autoload 'ibuffer-toggle-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2659 | Toggle the display status of the filter group on this line. | ||
| 2660 | |||
| 2661 | \(fn)" t nil) | ||
| 2662 | |||
| 2663 | (autoload 'ibuffer-forward-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2664 | Move point forwards by COUNT filtering groups. | ||
| 2665 | |||
| 2666 | \(fn &optional COUNT)" t nil) | ||
| 2667 | |||
| 2668 | (autoload 'ibuffer-backward-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2669 | Move point backwards by COUNT filtering groups. | ||
| 2670 | |||
| 2671 | \(fn &optional COUNT)" t nil) | ||
| 2672 | (autoload 'ibuffer-do-shell-command-pipe "ibuf-ext") | ||
| 2673 | (autoload 'ibuffer-do-shell-command-pipe-replace "ibuf-ext") | ||
| 2674 | (autoload 'ibuffer-do-shell-command-file "ibuf-ext") | ||
| 2675 | (autoload 'ibuffer-do-eval "ibuf-ext") | ||
| 2676 | (autoload 'ibuffer-do-view-and-eval "ibuf-ext") | ||
| 2677 | (autoload 'ibuffer-do-rename-uniquely "ibuf-ext") | ||
| 2678 | (autoload 'ibuffer-do-revert "ibuf-ext") | ||
| 2679 | (autoload 'ibuffer-do-isearch "ibuf-ext") | ||
| 2680 | (autoload 'ibuffer-do-isearch-regexp "ibuf-ext") | ||
| 2681 | (autoload 'ibuffer-do-replace-regexp "ibuf-ext") | ||
| 2682 | (autoload 'ibuffer-do-query-replace "ibuf-ext") | ||
| 2683 | (autoload 'ibuffer-do-query-replace-regexp "ibuf-ext") | ||
| 2684 | (autoload 'ibuffer-do-print "ibuf-ext") | ||
| 2685 | |||
| 2686 | (autoload 'ibuffer-included-in-filters-p "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2687 | |||
| 2688 | |||
| 2689 | \(fn BUF FILTERS)" nil nil) | ||
| 2690 | |||
| 2691 | (autoload 'ibuffer-filters-to-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2692 | Make the current filters into a filtering group. | ||
| 2693 | |||
| 2694 | \(fn NAME)" t nil) | ||
| 2695 | |||
| 2696 | (autoload 'ibuffer-set-filter-groups-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2697 | Set the current filter groups to filter by mode. | ||
| 2698 | |||
| 2699 | \(fn)" t nil) | ||
| 2700 | |||
| 2701 | (autoload 'ibuffer-pop-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2702 | Remove the first filter group. | ||
| 2703 | |||
| 2704 | \(fn)" t nil) | ||
| 2705 | |||
| 2706 | (autoload 'ibuffer-decompose-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2707 | Decompose the filter group GROUP into active filters. | ||
| 2708 | |||
| 2709 | \(fn GROUP)" t nil) | ||
| 2710 | |||
| 2711 | (autoload 'ibuffer-clear-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2712 | Remove all filter groups. | ||
| 2713 | |||
| 2714 | \(fn)" t nil) | ||
| 2715 | |||
| 2716 | (autoload 'ibuffer-jump-to-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2717 | Move point to the filter group whose name is NAME. | ||
| 2718 | |||
| 2719 | \(fn NAME)" t nil) | ||
| 2720 | |||
| 2721 | (autoload 'ibuffer-kill-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2722 | Kill the filter group named NAME. | ||
| 2723 | The group will be added to `ibuffer-filter-group-kill-ring'. | ||
| 2724 | |||
| 2725 | \(fn NAME)" t nil) | ||
| 2726 | |||
| 2727 | (autoload 'ibuffer-kill-line "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2728 | Kill the filter group at point. | ||
| 2729 | See also `ibuffer-kill-filter-group'. | ||
| 2730 | |||
| 2731 | \(fn &optional ARG INTERACTIVE-P)" t nil) | ||
| 2732 | |||
| 2733 | (autoload 'ibuffer-yank "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2734 | Yank the last killed filter group before group at point. | ||
| 2735 | |||
| 2736 | \(fn)" t nil) | ||
| 2737 | |||
| 2738 | (autoload 'ibuffer-yank-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2739 | Yank the last killed filter group before group named NAME. | ||
| 2740 | |||
| 2741 | \(fn NAME)" t nil) | ||
| 2742 | |||
| 2743 | (autoload 'ibuffer-save-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2744 | Save all active filter groups GROUPS as NAME. | ||
| 2745 | They are added to `ibuffer-saved-filter-groups'. Interactively, | ||
| 2746 | prompt for NAME, and use the current filters. | ||
| 2747 | |||
| 2748 | \(fn NAME GROUPS)" t nil) | ||
| 2749 | |||
| 2750 | (autoload 'ibuffer-delete-saved-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2751 | Delete saved filter groups with NAME. | ||
| 2752 | They are removed from `ibuffer-saved-filter-groups'. | ||
| 2753 | |||
| 2754 | \(fn NAME)" t nil) | ||
| 2755 | |||
| 2756 | (autoload 'ibuffer-switch-to-saved-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2757 | Set this buffer's filter groups to saved version with NAME. | ||
| 2758 | The value from `ibuffer-saved-filter-groups' is used. | ||
| 2759 | |||
| 2760 | \(fn NAME)" t nil) | ||
| 2761 | |||
| 2762 | (autoload 'ibuffer-filter-disable "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2763 | Disable all filters currently in effect in this buffer. | ||
| 2764 | With optional arg DELETE-FILTER-GROUPS non-nil, delete all filter | ||
| 2765 | group definitions by setting `ibuffer-filter-groups' to nil. | ||
| 2766 | |||
| 2767 | \(fn &optional DELETE-FILTER-GROUPS)" t nil) | ||
| 2768 | |||
| 2769 | (autoload 'ibuffer-pop-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2770 | Remove the top filter in this buffer. | ||
| 2771 | |||
| 2772 | \(fn)" t nil) | ||
| 2773 | |||
| 2774 | (autoload 'ibuffer-decompose-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2775 | Separate the top compound filter (OR, NOT, or SAVED) in this buffer. | ||
| 2776 | |||
| 2777 | This means that the topmost filter on the filtering stack, which must | ||
| 2778 | be a complex filter like (OR [name: foo] [mode: bar-mode]), will be | ||
| 2779 | turned into two separate filters [name: foo] and [mode: bar-mode]. | ||
| 2780 | |||
| 2781 | \(fn)" t nil) | ||
| 2782 | |||
| 2783 | (autoload 'ibuffer-exchange-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2784 | Exchange the top two filters on the stack in this buffer. | ||
| 2785 | |||
| 2786 | \(fn)" t nil) | ||
| 2787 | |||
| 2788 | (autoload 'ibuffer-negate-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2789 | Negate the sense of the top filter in the current buffer. | ||
| 2790 | |||
| 2791 | \(fn)" t nil) | ||
| 2792 | |||
| 2793 | (autoload 'ibuffer-or-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2794 | Replace the top two filters in this buffer with their logical OR. | ||
| 2795 | If optional argument REVERSE is non-nil, instead break the top OR | ||
| 2796 | filter into parts. | ||
| 2797 | |||
| 2798 | \(fn &optional REVERSE)" t nil) | ||
| 2799 | |||
| 2800 | (autoload 'ibuffer-save-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2801 | Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'. | ||
| 2802 | Interactively, prompt for NAME, and use the current filters. | ||
| 2803 | |||
| 2804 | \(fn NAME FILTERS)" t nil) | ||
| 2805 | |||
| 2806 | (autoload 'ibuffer-delete-saved-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2807 | Delete saved filters with NAME from `ibuffer-saved-filters'. | ||
| 2808 | |||
| 2809 | \(fn NAME)" t nil) | ||
| 2810 | |||
| 2811 | (autoload 'ibuffer-add-saved-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2812 | Add saved filters from `ibuffer-saved-filters' to this buffer's filters. | ||
| 2813 | |||
| 2814 | \(fn NAME)" t nil) | ||
| 2815 | |||
| 2816 | (autoload 'ibuffer-switch-to-saved-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2817 | Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'. | ||
| 2818 | |||
| 2819 | \(fn NAME)" t nil) | ||
| 2820 | (autoload 'ibuffer-filter-by-mode "ibuf-ext") | ||
| 2821 | (autoload 'ibuffer-filter-by-used-mode "ibuf-ext") | ||
| 2822 | (autoload 'ibuffer-filter-by-derived-mode "ibuf-ext") | ||
| 2823 | (autoload 'ibuffer-filter-by-name "ibuf-ext") | ||
| 2824 | (autoload 'ibuffer-filter-by-filename "ibuf-ext") | ||
| 2825 | (autoload 'ibuffer-filter-by-size-gt "ibuf-ext") | ||
| 2826 | (autoload 'ibuffer-filter-by-size-lt "ibuf-ext") | ||
| 2827 | (autoload 'ibuffer-filter-by-content "ibuf-ext") | ||
| 2828 | (autoload 'ibuffer-filter-by-predicate "ibuf-ext") | ||
| 2829 | |||
| 2830 | (autoload 'ibuffer-toggle-sorting-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2831 | Toggle the current sorting mode. | ||
| 2832 | Default sorting modes are: | ||
| 2833 | Recency - the last time the buffer was viewed | ||
| 2834 | Name - the name of the buffer | ||
| 2835 | Major Mode - the name of the major mode of the buffer | ||
| 2836 | Size - the size of the buffer | ||
| 2837 | |||
| 2838 | \(fn)" t nil) | ||
| 2839 | |||
| 2840 | (autoload 'ibuffer-invert-sorting "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2841 | Toggle whether or not sorting is in reverse order. | ||
| 2842 | |||
| 2843 | \(fn)" t nil) | ||
| 2844 | (autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext") | ||
| 2845 | (autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext") | ||
| 2846 | (autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext") | ||
| 2847 | (autoload 'ibuffer-do-sort-by-size "ibuf-ext") | ||
| 2848 | (autoload 'ibuffer-do-sort-by-filename/process "ibuf-ext") | ||
| 2849 | |||
| 2850 | (autoload 'ibuffer-bs-show "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2851 | Emulate `bs-show' from the bs.el package. | ||
| 2852 | |||
| 2853 | \(fn)" t nil) | ||
| 2854 | |||
| 2855 | (autoload 'ibuffer-add-to-tmp-hide "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2856 | Add REGEXP to `ibuffer-tmp-hide-regexps'. | ||
| 2857 | This means that buffers whose name matches REGEXP will not be shown | ||
| 2858 | for this Ibuffer session. | ||
| 2859 | |||
| 2860 | \(fn REGEXP)" t nil) | ||
| 2861 | |||
| 2862 | (autoload 'ibuffer-add-to-tmp-show "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2863 | Add REGEXP to `ibuffer-tmp-show-regexps'. | ||
| 2864 | This means that buffers whose name matches REGEXP will always be shown | ||
| 2865 | for this Ibuffer session. | ||
| 2866 | |||
| 2867 | \(fn REGEXP)" t nil) | ||
| 2868 | |||
| 2869 | (autoload 'ibuffer-forward-next-marked "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2870 | Move forward by COUNT marked buffers (default 1). | ||
| 2871 | |||
| 2872 | If MARK is non-nil, it should be a character denoting the type of mark | ||
| 2873 | to move by. The default is `ibuffer-marked-char'. | ||
| 2874 | |||
| 2875 | If DIRECTION is non-nil, it should be an integer; negative integers | ||
| 2876 | mean move backwards, non-negative integers mean move forwards. | ||
| 2877 | |||
| 2878 | \(fn &optional COUNT MARK DIRECTION)" t nil) | ||
| 2879 | |||
| 2880 | (autoload 'ibuffer-backwards-next-marked "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2881 | Move backwards by COUNT marked buffers (default 1). | ||
| 2882 | |||
| 2883 | If MARK is non-nil, it should be a character denoting the type of mark | ||
| 2884 | to move by. The default is `ibuffer-marked-char'. | ||
| 2885 | |||
| 2886 | \(fn &optional COUNT MARK)" t nil) | ||
| 2887 | |||
| 2888 | (autoload 'ibuffer-do-kill-lines "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2889 | Hide all of the currently marked lines. | ||
| 2890 | |||
| 2891 | \(fn)" t nil) | ||
| 2892 | |||
| 2893 | (autoload 'ibuffer-jump-to-buffer "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2894 | Move point to the buffer whose name is NAME. | ||
| 2895 | |||
| 2896 | If called interactively, prompt for a buffer name and go to the | ||
| 2897 | corresponding line in the Ibuffer buffer. If said buffer is in a | ||
| 2898 | hidden group filter, open it. | ||
| 2899 | |||
| 2900 | If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer | ||
| 2901 | visible buffers in the completion list. Calling the command with | ||
| 2902 | a prefix argument reverses the meaning of that variable. | ||
| 2903 | |||
| 2904 | \(fn NAME)" t nil) | ||
| 2905 | |||
| 2906 | (autoload 'ibuffer-diff-with-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2907 | View the differences between marked buffers and their associated files. | ||
| 2908 | If no buffers are marked, use buffer at point. | ||
| 2909 | This requires the external program \"diff\" to be in your `exec-path'. | ||
| 2910 | |||
| 2911 | \(fn)" t nil) | ||
| 2912 | |||
| 2913 | (autoload 'ibuffer-copy-filename-as-kill "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2914 | Copy filenames of marked buffers into the kill ring. | ||
| 2915 | |||
| 2916 | The names are separated by a space. | ||
| 2917 | If a buffer has no filename, it is ignored. | ||
| 2918 | |||
| 2919 | With no prefix arg, use the filename sans its directory of each marked file. | ||
| 2920 | With a zero prefix arg, use the complete filename of each marked file. | ||
| 2921 | With \\[universal-argument], use the filename of each marked file relative | ||
| 2922 | to `ibuffer-default-directory' if non-nil, otherwise `default-directory'. | ||
| 2923 | |||
| 2924 | You can then feed the file name(s) to other commands with \\[yank]. | ||
| 2925 | |||
| 2926 | \(fn &optional ARG)" t nil) | ||
| 2927 | |||
| 2928 | (autoload 'ibuffer-mark-by-name-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2929 | Mark all buffers whose name matches REGEXP. | ||
| 2930 | |||
| 2931 | \(fn REGEXP)" t nil) | ||
| 2932 | |||
| 2933 | (autoload 'ibuffer-mark-by-mode-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2934 | Mark all buffers whose major mode matches REGEXP. | ||
| 2935 | |||
| 2936 | \(fn REGEXP)" t nil) | ||
| 2937 | |||
| 2938 | (autoload 'ibuffer-mark-by-file-name-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2939 | Mark all buffers whose file name matches REGEXP. | ||
| 2940 | |||
| 2941 | \(fn REGEXP)" t nil) | ||
| 2942 | |||
| 2943 | (autoload 'ibuffer-mark-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2944 | Mark all buffers whose major mode equals MODE. | ||
| 2945 | |||
| 2946 | \(fn MODE)" t nil) | ||
| 2947 | |||
| 2948 | (autoload 'ibuffer-mark-modified-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2949 | Mark all modified buffers. | ||
| 2950 | |||
| 2951 | \(fn)" t nil) | ||
| 2952 | |||
| 2953 | (autoload 'ibuffer-mark-unsaved-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2954 | Mark all modified buffers that have an associated file. | ||
| 2955 | |||
| 2956 | \(fn)" t nil) | ||
| 2957 | |||
| 2958 | (autoload 'ibuffer-mark-dissociated-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2959 | Mark all buffers whose associated file does not exist. | ||
| 2960 | |||
| 2961 | \(fn)" t nil) | ||
| 2962 | |||
| 2963 | (autoload 'ibuffer-mark-help-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2964 | Mark buffers whose major mode is in variable `ibuffer-help-buffer-modes'. | ||
| 2965 | |||
| 2966 | \(fn)" t nil) | ||
| 2967 | |||
| 2968 | (autoload 'ibuffer-mark-compressed-file-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2969 | Mark buffers whose associated file is compressed. | ||
| 2970 | |||
| 2971 | \(fn)" t nil) | ||
| 2972 | |||
| 2973 | (autoload 'ibuffer-mark-old-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2974 | Mark buffers which have not been viewed in `ibuffer-old-time' hours. | ||
| 2975 | |||
| 2976 | \(fn)" t nil) | ||
| 2977 | |||
| 2978 | (autoload 'ibuffer-mark-special-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2979 | Mark all buffers whose name begins and ends with '*'. | ||
| 2980 | |||
| 2981 | \(fn)" t nil) | ||
| 2982 | |||
| 2983 | (autoload 'ibuffer-mark-read-only-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2984 | Mark all read-only buffers. | ||
| 2985 | |||
| 2986 | \(fn)" t nil) | ||
| 2987 | |||
| 2988 | (autoload 'ibuffer-mark-dired-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2989 | Mark all `dired' buffers. | ||
| 2990 | |||
| 2991 | \(fn)" t nil) | ||
| 2992 | |||
| 2993 | (autoload 'ibuffer-do-occur "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\ | ||
| 2994 | View lines which match REGEXP in all marked buffers. | ||
| 2995 | Optional argument NLINES says how many lines of context to display: it | ||
| 2996 | defaults to one. | ||
| 2997 | |||
| 2998 | \(fn REGEXP &optional NLINES)" t nil) | ||
| 2999 | |||
| 3000 | ;;;*** | ||
| 3001 | |||
| 3002 | ;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "d06b2735a74954e0c6922a811de7608c") | 2631 | ;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "d06b2735a74954e0c6922a811de7608c") |
| 3003 | ;;; Generated autoloads from ibuf-ext.el | 2632 | ;;; Generated autoloads from ibuf-ext.el |
| 3004 | 2633 | ||
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index db515ca65c7..246ee5f566a 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -4612,229 +4612,6 @@ encoded string (and the same mask) will decode the string." | |||
| 4612 | 4612 | ||
| 4613 | ;;; Start of automatically extracted autoloads. | 4613 | ;;; Start of automatically extracted autoloads. |
| 4614 | 4614 | ||
| 4615 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailedit" | ||
| 4616 | ;;;;;; "rmailedit.el" "0b056146d4775080a1847b8ce7527bc5") | ||
| 4617 | ;;; Generated autoloads from rmailedit.el | ||
| 4618 | |||
| 4619 | (autoload 'rmail-edit-current-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailedit" "\ | ||
| 4620 | Edit the contents of this message. | ||
| 4621 | |||
| 4622 | \(fn)" t nil) | ||
| 4623 | |||
| 4624 | ;;;*** | ||
| 4625 | |||
| 4626 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" | ||
| 4627 | ;;;;;; "rmailkwd.el" "b5337290fd35bbc11888afb25d767195") | ||
| 4628 | ;;; Generated autoloads from rmailkwd.el | ||
| 4629 | |||
| 4630 | (autoload 'rmail-add-label "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\ | ||
| 4631 | Add LABEL to labels associated with current RMAIL message. | ||
| 4632 | Completes (see `rmail-read-label') over known labels when reading. | ||
| 4633 | LABEL may be a symbol or string. Only one label is allowed. | ||
| 4634 | |||
| 4635 | \(fn LABEL)" t nil) | ||
| 4636 | |||
| 4637 | (autoload 'rmail-kill-label "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\ | ||
| 4638 | Remove LABEL from labels associated with current RMAIL message. | ||
| 4639 | Completes (see `rmail-read-label') over known labels when reading. | ||
| 4640 | LABEL may be a symbol or string. Only one label is allowed. | ||
| 4641 | |||
| 4642 | \(fn LABEL)" t nil) | ||
| 4643 | |||
| 4644 | (autoload 'rmail-read-label "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\ | ||
| 4645 | Read a label with completion, prompting with PROMPT. | ||
| 4646 | Completions are chosen from `rmail-label-obarray'. The default | ||
| 4647 | is `rmail-last-label', if that is non-nil. Updates `rmail-last-label' | ||
| 4648 | according to the choice made, and returns a symbol. | ||
| 4649 | |||
| 4650 | \(fn PROMPT)" nil nil) | ||
| 4651 | |||
| 4652 | (autoload 'rmail-previous-labeled-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\ | ||
| 4653 | Show previous message with one of the labels LABELS. | ||
| 4654 | LABELS should be a comma-separated list of label names. | ||
| 4655 | If LABELS is empty, the last set of labels specified is used. | ||
| 4656 | With prefix argument N moves backward N messages with these labels. | ||
| 4657 | |||
| 4658 | \(fn N LABELS)" t nil) | ||
| 4659 | |||
| 4660 | (autoload 'rmail-next-labeled-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\ | ||
| 4661 | Show next message with one of the labels LABELS. | ||
| 4662 | LABELS should be a comma-separated list of label names. | ||
| 4663 | If LABELS is empty, the last set of labels specified is used. | ||
| 4664 | With prefix argument N moves forward N messages with these labels. | ||
| 4665 | |||
| 4666 | \(fn N LABELS)" t nil) | ||
| 4667 | |||
| 4668 | ;;;*** | ||
| 4669 | |||
| 4670 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmm" | ||
| 4671 | ;;;;;; "rmailmm.el" "8c14f4cf6e7dacb0c94fd300d814caf7") | ||
| 4672 | ;;; Generated autoloads from rmailmm.el | ||
| 4673 | |||
| 4674 | (autoload 'rmail-mime "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmm" "\ | ||
| 4675 | Toggle the display of a MIME message. | ||
| 4676 | |||
| 4677 | The actual behavior depends on the value of `rmail-enable-mime'. | ||
| 4678 | |||
| 4679 | If `rmail-enable-mime' is non-nil (the default), this command toggles | ||
| 4680 | the display of a MIME message between decoded presentation form and | ||
| 4681 | raw data. With optional prefix argument ARG, it toggles the display only | ||
| 4682 | of the MIME entity at point, if there is one. The optional argument | ||
| 4683 | STATE forces a particular display state, rather than toggling. | ||
| 4684 | `raw' forces raw mode, any other non-nil value forces decoded mode. | ||
| 4685 | |||
| 4686 | If `rmail-enable-mime' is nil, this creates a temporary \"*RMAIL*\" | ||
| 4687 | buffer holding a decoded copy of the message. Inline content-types are | ||
| 4688 | handled according to `rmail-mime-media-type-handlers-alist'. | ||
| 4689 | By default, this displays text and multipart messages, and offers to | ||
| 4690 | download attachments as specified by `rmail-mime-attachment-dirs-alist'. | ||
| 4691 | The arguments ARG and STATE have no effect in this case. | ||
| 4692 | |||
| 4693 | \(fn &optional ARG STATE)" t nil) | ||
| 4694 | |||
| 4695 | ;;;*** | ||
| 4696 | |||
| 4697 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmsc" | ||
| 4698 | ;;;;;; "rmailmsc.el" "8a2466563b4a463710531d01766c07a3") | ||
| 4699 | ;;; Generated autoloads from rmailmsc.el | ||
| 4700 | |||
| 4701 | (autoload 'set-rmail-inbox-list "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmsc" "\ | ||
| 4702 | Set the inbox list of the current RMAIL file to FILE-NAME. | ||
| 4703 | You can specify one file name, or several names separated by commas. | ||
| 4704 | If FILE-NAME is empty, remove any existing inbox list. | ||
| 4705 | |||
| 4706 | This applies only to the current session. | ||
| 4707 | |||
| 4708 | \(fn FILE-NAME)" t nil) | ||
| 4709 | |||
| 4710 | ;;;*** | ||
| 4711 | |||
| 4712 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" | ||
| 4713 | ;;;;;; "rmailsort.el" "3e3a30326fc95d7f17835906c2ccb19f") | ||
| 4714 | ;;; Generated autoloads from rmailsort.el | ||
| 4715 | |||
| 4716 | (autoload 'rmail-sort-by-date "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4717 | Sort messages of current Rmail buffer by \"Date\" header. | ||
| 4718 | If prefix argument REVERSE is non-nil, sorts in reverse order. | ||
| 4719 | |||
| 4720 | \(fn REVERSE)" t nil) | ||
| 4721 | |||
| 4722 | (autoload 'rmail-sort-by-subject "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4723 | Sort messages of current Rmail buffer by \"Subject\" header. | ||
| 4724 | Ignores any \"Re: \" prefix. If prefix argument REVERSE is | ||
| 4725 | non-nil, sorts in reverse order. | ||
| 4726 | |||
| 4727 | \(fn REVERSE)" t nil) | ||
| 4728 | |||
| 4729 | (autoload 'rmail-sort-by-author "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4730 | Sort messages of current Rmail buffer by author. | ||
| 4731 | This uses either the \"From\" or \"Sender\" header, downcased. | ||
| 4732 | If prefix argument REVERSE is non-nil, sorts in reverse order. | ||
| 4733 | |||
| 4734 | \(fn REVERSE)" t nil) | ||
| 4735 | |||
| 4736 | (autoload 'rmail-sort-by-recipient "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4737 | Sort messages of current Rmail buffer by recipient. | ||
| 4738 | This uses either the \"To\" or \"Apparently-To\" header, downcased. | ||
| 4739 | If prefix argument REVERSE is non-nil, sorts in reverse order. | ||
| 4740 | |||
| 4741 | \(fn REVERSE)" t nil) | ||
| 4742 | |||
| 4743 | (autoload 'rmail-sort-by-correspondent "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4744 | Sort messages of current Rmail buffer by other correspondent. | ||
| 4745 | This uses either the \"From\", \"Sender\", \"To\", or | ||
| 4746 | \"Apparently-To\" header, downcased. Uses the first header not | ||
| 4747 | excluded by `mail-dont-reply-to-names'. If prefix argument | ||
| 4748 | REVERSE is non-nil, sorts in reverse order. | ||
| 4749 | |||
| 4750 | \(fn REVERSE)" t nil) | ||
| 4751 | |||
| 4752 | (autoload 'rmail-sort-by-lines "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4753 | Sort messages of current Rmail buffer by the number of lines. | ||
| 4754 | If prefix argument REVERSE is non-nil, sorts in reverse order. | ||
| 4755 | |||
| 4756 | \(fn REVERSE)" t nil) | ||
| 4757 | |||
| 4758 | (autoload 'rmail-sort-by-labels "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\ | ||
| 4759 | Sort messages of current Rmail buffer by labels. | ||
| 4760 | LABELS is a comma-separated list of labels. The order of these | ||
| 4761 | labels specifies the order of messages: messages with the first | ||
| 4762 | label come first, messages with the second label come second, and | ||
| 4763 | so on. Messages that have none of these labels come last. | ||
| 4764 | If prefix argument REVERSE is non-nil, sorts in reverse order. | ||
| 4765 | |||
| 4766 | \(fn REVERSE LABELS)" t nil) | ||
| 4767 | |||
| 4768 | ;;;*** | ||
| 4769 | |||
| 4770 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" | ||
| 4771 | ;;;;;; "rmailsum.el" "9005bd5da3e21d1cc173e86fd9fec3c9") | ||
| 4772 | ;;; Generated autoloads from rmailsum.el | ||
| 4773 | |||
| 4774 | (autoload 'rmail-summary "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\ | ||
| 4775 | Display a summary of all messages, one line per message. | ||
| 4776 | |||
| 4777 | \(fn)" t nil) | ||
| 4778 | |||
| 4779 | (autoload 'rmail-summary-by-labels "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\ | ||
| 4780 | Display a summary of all messages with one or more LABELS. | ||
| 4781 | LABELS should be a string containing the desired labels, separated by commas. | ||
| 4782 | |||
| 4783 | \(fn LABELS)" t nil) | ||
| 4784 | |||
| 4785 | (autoload 'rmail-summary-by-recipients "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\ | ||
| 4786 | Display a summary of all messages with the given RECIPIENTS. | ||
| 4787 | Normally checks the To, From and Cc fields of headers; | ||
| 4788 | but if PRIMARY-ONLY is non-nil (prefix arg given), | ||
| 4789 | only look in the To and From fields. | ||
| 4790 | RECIPIENTS is a string of regexps separated by commas. | ||
| 4791 | |||
| 4792 | \(fn RECIPIENTS &optional PRIMARY-ONLY)" t nil) | ||
| 4793 | |||
| 4794 | (autoload 'rmail-summary-by-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\ | ||
| 4795 | Display a summary of all messages according to regexp REGEXP. | ||
| 4796 | If the regular expression is found in the header of the message | ||
| 4797 | \(including in the date and other lines, as well as the subject line), | ||
| 4798 | Emacs will list the message in the summary. | ||
| 4799 | |||
| 4800 | \(fn REGEXP)" t nil) | ||
| 4801 | |||
| 4802 | (autoload 'rmail-summary-by-topic "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\ | ||
| 4803 | Display a summary of all messages with the given SUBJECT. | ||
| 4804 | Normally checks just the Subject field of headers; but with prefix | ||
| 4805 | argument WHOLE-MESSAGE is non-nil, looks in the whole message. | ||
| 4806 | SUBJECT is a string of regexps separated by commas. | ||
| 4807 | |||
| 4808 | \(fn SUBJECT &optional WHOLE-MESSAGE)" t nil) | ||
| 4809 | |||
| 4810 | (autoload 'rmail-summary-by-senders "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\ | ||
| 4811 | Display a summary of all messages whose \"From\" field matches SENDERS. | ||
| 4812 | SENDERS is a string of regexps separated by commas. | ||
| 4813 | |||
| 4814 | \(fn SENDERS)" t nil) | ||
| 4815 | |||
| 4816 | ;;;*** | ||
| 4817 | |||
| 4818 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/undigest" | ||
| 4819 | ;;;;;; "undigest.el" "9b273a3e15b5496ab6121b585d8bd3b3") | ||
| 4820 | ;;; Generated autoloads from undigest.el | ||
| 4821 | |||
| 4822 | (autoload 'undigestify-rmail-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/undigest" "\ | ||
| 4823 | Break up a digest message into its constituent messages. | ||
| 4824 | Leaves original message, deleted, before the undigestified messages. | ||
| 4825 | |||
| 4826 | \(fn)" t nil) | ||
| 4827 | |||
| 4828 | (autoload 'unforward-rmail-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/undigest" "\ | ||
| 4829 | Extract a forwarded message from the containing message. | ||
| 4830 | This puts the forwarded message into a separate rmail message following | ||
| 4831 | the containing message. This command is only useful when messages are | ||
| 4832 | forwarded with `rmail-enable-mime-composing' set to nil. | ||
| 4833 | |||
| 4834 | \(fn)" t nil) | ||
| 4835 | |||
| 4836 | ;;;*** | ||
| 4837 | |||
| 4838 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "rmailedit.el" | 4615 | ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "rmailedit.el" |
| 4839 | ;;;;;; "0b056146d4775080a1847b8ce7527bc5") | 4616 | ;;;;;; "0b056146d4775080a1847b8ce7527bc5") |
| 4840 | ;;; Generated autoloads from rmailedit.el | 4617 | ;;; Generated autoloads from rmailedit.el |
diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 50a44701906..cd2b70db658 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | |||
| 2 | ;;; ps-print.el --- print text from the buffer as PostScript | 1 | ;;; ps-print.el --- print text from the buffer as PostScript |
| 3 | 2 | ||
| 4 | ;; Copyright (C) 1993-2013 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1993-2013 Free Software Foundation, Inc. |
| @@ -6585,73 +6584,6 @@ If FACE is not a valid face name, use default face." | |||
| 6585 | ;; To make this file smaller, some commands go in a separate file. | 6584 | ;; To make this file smaller, some commands go in a separate file. |
| 6586 | ;; But autoload them here to make the separation invisible. | 6585 | ;; But autoload them here to make the separation invisible. |
| 6587 | 6586 | ||
| 6588 | ;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" | ||
| 6589 | ;;;;;; "ps-mule.el" "a90e8414a27ac8fdf093251ac648d761") | ||
| 6590 | ;;; Generated autoloads from ps-mule.el | ||
| 6591 | |||
| 6592 | (defvar ps-multibyte-buffer nil "\ | ||
| 6593 | Specifies the multi-byte buffer handling. | ||
| 6594 | |||
| 6595 | Valid values are: | ||
| 6596 | |||
| 6597 | nil This is the value to use the default settings; | ||
| 6598 | by default, this only works to print buffers with | ||
| 6599 | only ASCII and Latin characters. But this default | ||
| 6600 | setting can be changed by setting the variable | ||
| 6601 | `ps-mule-font-info-database-default' differently. | ||
| 6602 | The initial value of this variable is | ||
| 6603 | `ps-mule-font-info-database-latin' (see | ||
| 6604 | documentation). | ||
| 6605 | |||
| 6606 | `non-latin-printer' This is the value to use when you have a Japanese | ||
| 6607 | or Korean PostScript printer and want to print | ||
| 6608 | buffer with ASCII, Latin-1, Japanese (JISX0208 and | ||
| 6609 | JISX0201-Kana) and Korean characters. At present, | ||
| 6610 | it was not tested with the Korean characters | ||
| 6611 | printing. If you have a korean PostScript printer, | ||
| 6612 | please, test it. | ||
| 6613 | |||
| 6614 | `bdf-font' This is the value to use when you want to print | ||
| 6615 | buffer with BDF fonts. BDF fonts include both latin | ||
| 6616 | and non-latin fonts. BDF (Bitmap Distribution | ||
| 6617 | Format) is a format used for distributing X's font | ||
| 6618 | source file. BDF fonts are included in | ||
| 6619 | `intlfonts-1.2' which is a collection of X11 fonts | ||
| 6620 | for all characters supported by Emacs. In order to | ||
| 6621 | use this value, be sure to have installed | ||
| 6622 | `intlfonts-1.2' and set the variable | ||
| 6623 | `bdf-directory-list' appropriately (see ps-bdf.el for | ||
| 6624 | documentation of this variable). | ||
| 6625 | |||
| 6626 | `bdf-font-except-latin' This is like `bdf-font' except that it uses | ||
| 6627 | PostScript default fonts to print ASCII and Latin-1 | ||
| 6628 | characters. This is convenient when you want or | ||
| 6629 | need to use both latin and non-latin characters on | ||
| 6630 | the same buffer. See `ps-font-family', | ||
| 6631 | `ps-header-font-family' and `ps-font-info-database'. | ||
| 6632 | |||
| 6633 | Any other value is treated as nil.") | ||
| 6634 | |||
| 6635 | (custom-autoload 'ps-multibyte-buffer "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" t) | ||
| 6636 | |||
| 6637 | (autoload 'ps-mule-initialize "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" "\ | ||
| 6638 | Initialize global data for printing multi-byte characters. | ||
| 6639 | |||
| 6640 | \(fn)" nil nil) | ||
| 6641 | |||
| 6642 | (autoload 'ps-mule-begin-job "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" "\ | ||
| 6643 | Start printing job for multi-byte chars between FROM and TO. | ||
| 6644 | It checks if all multi-byte characters in the region are printable or not. | ||
| 6645 | |||
| 6646 | \(fn FROM TO)" nil nil) | ||
| 6647 | |||
| 6648 | (autoload 'ps-mule-end-job "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" "\ | ||
| 6649 | Finish printing job for multi-byte chars. | ||
| 6650 | |||
| 6651 | \(fn)" nil nil) | ||
| 6652 | |||
| 6653 | ;;;*** | ||
| 6654 | |||
| 6655 | ;;;### (autoloads nil "ps-mule" "ps-mule.el" "a90e8414a27ac8fdf093251ac648d761") | 6587 | ;;;### (autoloads nil "ps-mule" "ps-mule.el" "a90e8414a27ac8fdf093251ac648d761") |
| 6656 | ;;; Generated autoloads from ps-mule.el | 6588 | ;;; Generated autoloads from ps-mule.el |
| 6657 | 6589 | ||