aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-10-30 09:29:36 -0700
committerGlenn Morris2013-10-30 09:29:36 -0700
commit6c3d1c01b4e4d464fa9b369e904c900cd4290cbf (patch)
treefb4a0e304af4d467db0e8313c5420c83f6d82859
parent13e9d2a7eaaea52aa1e87518221ad60493ba2c6a (diff)
downloademacs-6c3d1c01b4e4d464fa9b369e904c900cd4290cbf.tar.gz
emacs-6c3d1c01b4e4d464fa9b369e904c900cd4290cbf.zip
Revert auto-commit loaddefs weirdness
-rw-r--r--lisp/dired.el542
-rw-r--r--lisp/emulation/tpu-edt.el29
-rw-r--r--lisp/htmlfontify.el22
-rw-r--r--lisp/ibuffer.el371
-rw-r--r--lisp/mail/rmail.el223
-rw-r--r--lisp/ps-print.el68
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" "\
3857Compare file at point with file FILE using `diff'.
3858If called interactively, prompt for FILE. If the file at point
3859has a backup file, use that as the default. If the file at point
3860is a backup file, use its original. If the mark is active
3861in 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
3865FILE is the first file given to `diff'. The file at point
3866is the second file given to `diff'.
3867
3868With prefix arg, prompt for second argument SWITCHES, which is
3869the 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" "\
3874Diff this file with its backup file or vice versa.
3875Uses the latest backup, if there are several numerical backups.
3876If this file is a backup, diff it with its original.
3877The backup file is the first file given to `diff'.
3878With 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" "\
3883Mark files with different file attributes in two dired buffers.
3884Compare file attributes of files in the current directory
3885with file attributes in directory DIR2 using PREDICATE on pairs of files
3886with the same name. Mark files for which PREDICATE returns non-nil.
3887Mark files with different names if PREDICATE is nil (or interactively
3888with empty input at the predicate prompt).
3889
3890PREDICATE 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
3900Examples 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" "\
3911Change the mode of the marked (or next ARG) files.
3912Symbolic modes like `g+w' are allowed.
3913Type M-n to pull the file attributes of the file at point
3914into 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" "\
3919Change the group of the marked (or next ARG) files.
3920Type M-n to pull the file attributes of the file at point
3921into 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" "\
3926Change the owner of the marked (or next ARG) files.
3927Type M-n to pull the file attributes of the file at point
3928into 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" "\
3933Change the timestamp of the marked (or next ARG) files.
3934This calls touch.
3935Type M-n to pull the file attributes of the file at point
3936into 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" "\
3941Print the marked (or next ARG) files.
3942Uses 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" "\
3948Flag numerical backups for deletion.
3949Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
3950Positive prefix arg KEEP overrides `dired-kept-versions';
3951Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
3952
3953To clear the flags on these files, you can use \\[dired-flag-backup-files]
3954with 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" "\
3959Run a shell command COMMAND on the marked files asynchronously.
3960
3961Like `dired-do-shell-command', but adds `&' at the end of COMMAND
3962to execute it asynchronously.
3963
3964When operating on multiple files, asynchronous commands
3965are executed in the background on each file in parallel.
3966In shell syntax this means separating the individual commands
3967with `&'. However, when COMMAND ends in `;' or `;&' then commands
3968are executed in the background on each file sequentially waiting
3969for each command to terminate before running the next command.
3970In shell syntax this means separating the individual commands with `;'.
3971
3972The 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" "\
3977Run a shell command COMMAND on the marked files.
3978If no files are marked or a numeric prefix arg is given,
3979the next ARG files are used. Just \\[universal-argument] means the current file.
3980The prompt mentions the file(s) or the marker, as appropriate.
3981
3982If there is a `*' in COMMAND, surrounded by whitespace, this runs
3983COMMAND just once with the entire file list substituted there.
3984
3985If there is no `*', but there is a `?' in COMMAND, surrounded by
3986whitespace, this runs COMMAND on each file individually with the
3987file name substituted for `?'.
3988
3989Otherwise, this runs COMMAND on each file individually with the
3990file name added at the end of COMMAND (separated by a space).
3991
3992`*' and `?' when not surrounded by whitespace have no special
3993significance for `dired-do-shell-command', and are passed through
3994normally to the shell, but you must confirm first.
3995
3996If you want to use `*' as a shell wildcard with whitespace around
3997it, write `*\"\"' in place of just `*'. This is equivalent to just
3998`*' in the shell, but avoids Dired's special handling.
3999
4000If COMMAND ends in `&', `;', or `;&', it is executed in the
4001background asynchronously, and the output appears in the buffer
4002`*Async Shell Command*'. When operating on multiple files and COMMAND
4003ends in `&', the shell command is executed on each file in parallel.
4004However, when COMMAND ends in `;' or `;&' then commands are executed
4005in the background on each file sequentially waiting for each command
4006to terminate before running the next command. You can also use
4007`dired-do-async-shell-command' that automatically adds `&'.
4008
4009Otherwise, COMMAND is executed synchronously, and the output
4010appears in the buffer `*Shell Command Output*'.
4011
4012This feature does not try to redisplay Dired buffers afterward, as
4013there's no telling what files COMMAND may have changed.
4014Type \\[dired-do-redisplay] to redisplay the marked files.
4015
4016When COMMAND runs, its working directory is the top-level directory
4017of the Dired buffer, so output files usually are created there
4018instead of in a subdir.
4019
4020In a noninteractive call (from Lisp code), you must specify
4021the list of file names explicitly with the FILE-LIST argument, which
4022can 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" "\
4032Kill all marked lines (not the files).
4033With a prefix argument, kill that many lines starting with the current line.
4034\(A negative argument kills backward.)
4035If you use this command with a prefix argument to kill the line
4036for a file that is a directory, which you have inserted in the
4037Dired buffer as a subdirectory, then it deletes that subdirectory
4038from the buffer as well.
4039To kill an entire subdirectory (without killing its line in the
4040parent directory), go to its directory header line and use this
4041command 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" "\
4051Format PROMPT with ARGS, query user, and store the result in SYM.
4052The return value is either nil or t.
4053
4054The 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
4056this and subsequent queries.
4057
4058If SYM is already bound to a non-nil value, this function may
4059return automatically without querying the user. If SYM is !,
4060return 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" "\
4065Compress 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" "\
4070Byte 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" "\
4075Load 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" "\
4080Redisplay all marked (or next ARG) files.
4081If on a subdir line, redisplay that subdirectory. In that case,
4082a prefix arg lets you edit the `ls' switches used for the new listing.
4083
4084Dired remembers switches specified with a prefix arg, so that reverting
4085the buffer will not reset them. However, using `dired-undo' to re-insert
4086or delete subdirectories can bypass this machinery. Hence, you sometimes
4087may have to reset some subdirectory switches after a `dired-undo'.
4088You can reset all subdirectory switches to the default using
4089\\<dired-mode-map>\\[dired-reset-subdir-switches].
4090See 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" "\
4105Create 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" "\
4120Create a directory called DIRECTORY.
4121If 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" "\
4126Copy all marked (or next ARG) files, or copy the current file.
4127When operating on just the current file, prompt for the new name.
4128
4129When operating on multiple or marked files, prompt for a target
4130directory, and make the new copies in that directory, with the
4131same names as the original files. The initial suggestion for the
4132target directory is the Dired buffer's current directory (or, if
4133`dired-dwim-target' is non-nil, the current directory of a
4134neighboring Dired window).
4135
4136If `dired-copy-preserve-time' is non-nil, this command preserves
4137the modification time of each old file in the copy, similar to
4138the \"-p\" option for the \"cp\" shell command.
4139
4140This command copies symbolic links by creating new ones, similar
4141to 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" "\
4146Make symbolic links to current file or all marked (or next ARG) files.
4147When operating on just the current file, you specify the new name.
4148When operating on multiple or marked files, you specify a directory
4149and new symbolic links are made in that directory
4150with the same names that the files currently have. The default
4151suggested for the target directory depends on the value of
4152`dired-dwim-target', which see.
4153
4154For 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" "\
4159Add names (hard links) current file or all marked (or next ARG) files.
4160When operating on just the current file, you specify the new name.
4161When operating on multiple or marked files, you specify a directory
4162and new hard links are made in that directory
4163with the same names that the files currently have. The default
4164suggested 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" "\
4170Rename current file or all marked (or next ARG) files.
4171When renaming just the current file, you specify the new name.
4172When renaming multiple or marked files, you specify a directory.
4173This command also renames any buffers that are visiting the files.
4174The default suggested for the target directory depends on the value
4175of `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" "\
4180Rename selected files whose names match REGEXP to NEWNAME.
4181
4182With non-zero prefix argument ARG, the command operates on the next ARG
4183files. Otherwise, it operates on all the marked files, or the current
4184file if none are marked.
4185
4186As 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.
4188NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
4189REGEXP defaults to the last regexp used.
4190
4191With a zero prefix arg, renaming by regexp affects the absolute file name.
4192Normally, 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" "\
4197Copy selected files whose names match REGEXP to NEWNAME.
4198See 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" "\
4203Hardlink selected files whose names match REGEXP to NEWNAME.
4204See 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" "\
4209Symlink selected files whose names match REGEXP to NEWNAME.
4210See 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" "\
4215Rename 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" "\
4220Rename 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" "\
4225Insert this subdirectory into the same dired buffer.
4226If 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).
4228With 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.
4231This function takes some pains to conform to `ls -lR' output.
4232
4233Dired remembers switches specified with a prefix arg, so that reverting
4234the buffer will not reset them. However, using `dired-undo' to re-insert
4235or delete subdirectories can bypass this machinery. Hence, you sometimes
4236may have to reset some subdirectory switches after a `dired-undo'.
4237You can reset all subdirectory switches to the default using
4238\\<dired-mode-map>\\[dired-reset-subdir-switches].
4239See 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" "\
4244Insert this subdirectory into the same Dired buffer.
4245If it is already present, overwrite the previous entry;
4246 otherwise, insert it at its natural place (as `ls -lR' would
4247 have done).
4248With 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.
4251This 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" "\
4256Go to previous subdirectory, regardless of level.
4257When 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" "\
4262Go to end of header line of DIR in this dired buffer.
4263Return value of point on success, otherwise return nil.
4264The 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" "\
4269Mark all files except `.' and `..' in current subdirectory.
4270If the Dired buffer shows multiple directories, this command
4271marks 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" "\
4276Remove all lines of current subdirectory.
4277Lower 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" "\
4282Go 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" "\
4287Go 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" "\
4292Hide or unhide the current subdirectory and move to next directory.
4293Optional prefix arg is a repeat factor.
4294Use \\[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" "\
4299Hide all subdirectories, leaving only their header lines.
4300If there is already something hidden, make everything visible again.
4301Use \\[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" "\
4306Set up isearch to search in Dired file names.
4307Intended 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" "\
4312Search 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" "\
4317Search 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" "\
4322Search 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" "\
4327Search 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" "\
4332Search through all marked files for a match for REGEXP.
4333Stops when a match is found.
4334To 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" "\
4339Do `query-replace-regexp' of FROM with TO, on all marked files.
4340Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
4341If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
4342with 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" "\
4347Print the type of FILE, according to the `file' command.
4348If you give a prefix to this command, and FILE is a symbolic
4349link, then the type of the file linked to by FILE is printed
4350instead.
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" "\
4361Jump to Dired buffer corresponding to current buffer.
4362If in a file, Dired the current directory and move to file's line.
4363If in Dired already, pop up a level and goto old directory's line.
4364In case the proper Dired file line cannot be found, refresh the dired
4365buffer and try again.
4366When OTHER-WINDOW is non-nil, jump to Dired buffer in other window.
4367Interactively with prefix argument, read FILE-NAME and
4368move 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" "\
4373Like \\[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" "\
4378Relative symlink all marked (or next ARG) files into a directory.
4379Otherwise make a relative symbolic link to the current file.
4380This creates relative symbolic links like
4381
4382 foo -> ../bar/foo
4383
4384not absolute ones like
4385
4386 foo -> /ugly/file/name/that/may/change/any/day/bar/foo
4387
4388For 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" "\
2446Minor mode to allow the cursor to move freely about the screen.
2447With a prefix argument ARG, enable the mode if ARG is positive,
2448and disable it otherwise. If called from Lisp, enable the mode
2449if 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" "\
2454Set 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" "\
2459Allow 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" "\
2464Constrain 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" "\
2419Load an X11 style rgb.txt FILE.
2420Search `hfy-rgb-load-path' if FILE is not specified.
2421Loads 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" "\
2427Use 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" "\
2438Load an X11 style rgb.txt FILE. 2418Load an X11 style rgb.txt FILE.
2439Search `hfy-rgb-load-path' if FILE is not specified. 2419Search `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" "\
2636Toggle use of Ibuffer's auto-update facility (Ibuffer Auto mode).
2637With a prefix argument ARG, enable Ibuffer Auto mode if ARG is
2638positive, and disable it otherwise. If called from Lisp, enable
2639the 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" "\
2644Enable 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" "\
2649Enable 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" "\
2654Toggle 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" "\
2659Toggle 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" "\
2664Move 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" "\
2669Move 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" "\
2692Make 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" "\
2697Set 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" "\
2702Remove 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" "\
2707Decompose 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" "\
2712Remove 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" "\
2717Move 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" "\
2722Kill the filter group named NAME.
2723The 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" "\
2728Kill the filter group at point.
2729See 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" "\
2734Yank 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" "\
2739Yank 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" "\
2744Save all active filter groups GROUPS as NAME.
2745They are added to `ibuffer-saved-filter-groups'. Interactively,
2746prompt 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" "\
2751Delete saved filter groups with NAME.
2752They 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" "\
2757Set this buffer's filter groups to saved version with NAME.
2758The 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" "\
2763Disable all filters currently in effect in this buffer.
2764With optional arg DELETE-FILTER-GROUPS non-nil, delete all filter
2765group 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" "\
2770Remove 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" "\
2775Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
2776
2777This means that the topmost filter on the filtering stack, which must
2778be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
2779turned 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" "\
2784Exchange 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" "\
2789Negate 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" "\
2794Replace the top two filters in this buffer with their logical OR.
2795If optional argument REVERSE is non-nil, instead break the top OR
2796filter 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" "\
2801Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
2802Interactively, 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" "\
2807Delete 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" "\
2812Add 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" "\
2817Set 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" "\
2831Toggle the current sorting mode.
2832Default 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" "\
2841Toggle 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" "\
2851Emulate `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" "\
2856Add REGEXP to `ibuffer-tmp-hide-regexps'.
2857This means that buffers whose name matches REGEXP will not be shown
2858for 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" "\
2863Add REGEXP to `ibuffer-tmp-show-regexps'.
2864This means that buffers whose name matches REGEXP will always be shown
2865for 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" "\
2870Move forward by COUNT marked buffers (default 1).
2871
2872If MARK is non-nil, it should be a character denoting the type of mark
2873to move by. The default is `ibuffer-marked-char'.
2874
2875If DIRECTION is non-nil, it should be an integer; negative integers
2876mean 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" "\
2881Move backwards by COUNT marked buffers (default 1).
2882
2883If MARK is non-nil, it should be a character denoting the type of mark
2884to 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" "\
2889Hide 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" "\
2894Move point to the buffer whose name is NAME.
2895
2896If called interactively, prompt for a buffer name and go to the
2897corresponding line in the Ibuffer buffer. If said buffer is in a
2898hidden group filter, open it.
2899
2900If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer
2901visible buffers in the completion list. Calling the command with
2902a 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" "\
2907View the differences between marked buffers and their associated files.
2908If no buffers are marked, use buffer at point.
2909This 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" "\
2914Copy filenames of marked buffers into the kill ring.
2915
2916The names are separated by a space.
2917If a buffer has no filename, it is ignored.
2918
2919With no prefix arg, use the filename sans its directory of each marked file.
2920With a zero prefix arg, use the complete filename of each marked file.
2921With \\[universal-argument], use the filename of each marked file relative
2922to `ibuffer-default-directory' if non-nil, otherwise `default-directory'.
2923
2924You 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" "\
2929Mark 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" "\
2934Mark 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" "\
2939Mark 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" "\
2944Mark 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" "\
2949Mark 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" "\
2954Mark 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" "\
2959Mark 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" "\
2964Mark 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" "\
2969Mark 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" "\
2974Mark 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" "\
2979Mark 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" "\
2984Mark 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" "\
2989Mark 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" "\
2994View lines which match REGEXP in all marked buffers.
2995Optional argument NLINES says how many lines of context to display: it
2996defaults 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" "\
4620Edit 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" "\
4631Add LABEL to labels associated with current RMAIL message.
4632Completes (see `rmail-read-label') over known labels when reading.
4633LABEL 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" "\
4638Remove LABEL from labels associated with current RMAIL message.
4639Completes (see `rmail-read-label') over known labels when reading.
4640LABEL 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" "\
4645Read a label with completion, prompting with PROMPT.
4646Completions are chosen from `rmail-label-obarray'. The default
4647is `rmail-last-label', if that is non-nil. Updates `rmail-last-label'
4648according 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" "\
4653Show previous message with one of the labels LABELS.
4654LABELS should be a comma-separated list of label names.
4655If LABELS is empty, the last set of labels specified is used.
4656With 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" "\
4661Show next message with one of the labels LABELS.
4662LABELS should be a comma-separated list of label names.
4663If LABELS is empty, the last set of labels specified is used.
4664With 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" "\
4675Toggle the display of a MIME message.
4676
4677The actual behavior depends on the value of `rmail-enable-mime'.
4678
4679If `rmail-enable-mime' is non-nil (the default), this command toggles
4680the display of a MIME message between decoded presentation form and
4681raw data. With optional prefix argument ARG, it toggles the display only
4682of the MIME entity at point, if there is one. The optional argument
4683STATE forces a particular display state, rather than toggling.
4684`raw' forces raw mode, any other non-nil value forces decoded mode.
4685
4686If `rmail-enable-mime' is nil, this creates a temporary \"*RMAIL*\"
4687buffer holding a decoded copy of the message. Inline content-types are
4688handled according to `rmail-mime-media-type-handlers-alist'.
4689By default, this displays text and multipart messages, and offers to
4690download attachments as specified by `rmail-mime-attachment-dirs-alist'.
4691The 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" "\
4702Set the inbox list of the current RMAIL file to FILE-NAME.
4703You can specify one file name, or several names separated by commas.
4704If FILE-NAME is empty, remove any existing inbox list.
4705
4706This 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" "\
4717Sort messages of current Rmail buffer by \"Date\" header.
4718If 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" "\
4723Sort messages of current Rmail buffer by \"Subject\" header.
4724Ignores any \"Re: \" prefix. If prefix argument REVERSE is
4725non-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" "\
4730Sort messages of current Rmail buffer by author.
4731This uses either the \"From\" or \"Sender\" header, downcased.
4732If 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" "\
4737Sort messages of current Rmail buffer by recipient.
4738This uses either the \"To\" or \"Apparently-To\" header, downcased.
4739If 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" "\
4744Sort messages of current Rmail buffer by other correspondent.
4745This uses either the \"From\", \"Sender\", \"To\", or
4746\"Apparently-To\" header, downcased. Uses the first header not
4747excluded by `mail-dont-reply-to-names'. If prefix argument
4748REVERSE 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" "\
4753Sort messages of current Rmail buffer by the number of lines.
4754If 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" "\
4759Sort messages of current Rmail buffer by labels.
4760LABELS is a comma-separated list of labels. The order of these
4761labels specifies the order of messages: messages with the first
4762label come first, messages with the second label come second, and
4763so on. Messages that have none of these labels come last.
4764If 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" "\
4775Display 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" "\
4780Display a summary of all messages with one or more LABELS.
4781LABELS 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" "\
4786Display a summary of all messages with the given RECIPIENTS.
4787Normally checks the To, From and Cc fields of headers;
4788but if PRIMARY-ONLY is non-nil (prefix arg given),
4789 only look in the To and From fields.
4790RECIPIENTS 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" "\
4795Display a summary of all messages according to regexp REGEXP.
4796If 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),
4798Emacs 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" "\
4803Display a summary of all messages with the given SUBJECT.
4804Normally checks just the Subject field of headers; but with prefix
4805argument WHOLE-MESSAGE is non-nil, looks in the whole message.
4806SUBJECT 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" "\
4811Display a summary of all messages whose \"From\" field matches SENDERS.
4812SENDERS 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" "\
4823Break up a digest message into its constituent messages.
4824Leaves 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" "\
4829Extract a forwarded message from the containing message.
4830This puts the forwarded message into a separate rmail message following
4831the containing message. This command is only useful when messages are
4832forwarded 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 "\
6593Specifies the multi-byte buffer handling.
6594
6595Valid 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
6633Any 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" "\
6638Initialize 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" "\
6643Start printing job for multi-byte chars between FROM and TO.
6644It 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" "\
6649Finish 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