mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
Auto-commit of loaddefs files.
This commit is contained in:
parent
0f771d26c8
commit
fb02976349
542
lisp/dired.el
542
lisp/dired.el
@ -3849,6 +3849,548 @@ Ask means pop up a menu for the user to select one of copy, move or link."
|
||||
|
||||
;;; Start of automatically extracted autoloads.
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux"
|
||||
;;;;;; "dired-aux.el" "04b4cb6bde3220f55574eb1d99ac0d29")
|
||||
;;; Generated autoloads from dired-aux.el
|
||||
|
||||
(autoload 'dired-diff "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Compare file at point with file FILE using `diff'.
|
||||
If called interactively, prompt for FILE. If the file at point
|
||||
has a backup file, use that as the default. If the file at point
|
||||
is a backup file, use its original. If the mark is active
|
||||
in Transient Mark mode, use the file at the mark as the default.
|
||||
\(That's the mark set by \\[set-mark-command], not by Dired's
|
||||
\\[dired-mark] command.)
|
||||
|
||||
FILE is the first file given to `diff'. The file at point
|
||||
is the second file given to `diff'.
|
||||
|
||||
With prefix arg, prompt for second argument SWITCHES, which is
|
||||
the string of command switches for the third argument of `diff'.
|
||||
|
||||
\(fn FILE &optional SWITCHES)" t nil)
|
||||
|
||||
(autoload 'dired-backup-diff "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Diff this file with its backup file or vice versa.
|
||||
Uses the latest backup, if there are several numerical backups.
|
||||
If this file is a backup, diff it with its original.
|
||||
The backup file is the first file given to `diff'.
|
||||
With prefix arg, prompt for argument SWITCHES which is options for `diff'.
|
||||
|
||||
\(fn &optional SWITCHES)" t nil)
|
||||
|
||||
(autoload 'dired-compare-directories "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Mark files with different file attributes in two dired buffers.
|
||||
Compare file attributes of files in the current directory
|
||||
with file attributes in directory DIR2 using PREDICATE on pairs of files
|
||||
with the same name. Mark files for which PREDICATE returns non-nil.
|
||||
Mark files with different names if PREDICATE is nil (or interactively
|
||||
with empty input at the predicate prompt).
|
||||
|
||||
PREDICATE is a Lisp expression that can refer to the following variables:
|
||||
|
||||
size1, size2 - file size in bytes
|
||||
mtime1, mtime2 - last modification time in seconds, as a float
|
||||
fa1, fa2 - list of file attributes
|
||||
returned by function `file-attributes'
|
||||
|
||||
where 1 refers to attribute of file in the current dired buffer
|
||||
and 2 to attribute of file in second dired buffer.
|
||||
|
||||
Examples of PREDICATE:
|
||||
|
||||
(> mtime1 mtime2) - mark newer files
|
||||
(not (= size1 size2)) - mark files with different sizes
|
||||
(not (string= (nth 8 fa1) (nth 8 fa2))) - mark files with different modes
|
||||
(not (and (= (nth 2 fa1) (nth 2 fa2)) - mark files with different UID
|
||||
(= (nth 3 fa1) (nth 3 fa2)))) and GID.
|
||||
|
||||
\(fn DIR2 PREDICATE)" t nil)
|
||||
|
||||
(autoload 'dired-do-chmod "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Change the mode of the marked (or next ARG) files.
|
||||
Symbolic modes like `g+w' are allowed.
|
||||
Type M-n to pull the file attributes of the file at point
|
||||
into the minibuffer.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-chgrp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Change the group of the marked (or next ARG) files.
|
||||
Type M-n to pull the file attributes of the file at point
|
||||
into the minibuffer.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-chown "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Change the owner of the marked (or next ARG) files.
|
||||
Type M-n to pull the file attributes of the file at point
|
||||
into the minibuffer.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-touch "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Change the timestamp of the marked (or next ARG) files.
|
||||
This calls touch.
|
||||
Type M-n to pull the file attributes of the file at point
|
||||
into the minibuffer.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-print "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Print the marked (or next ARG) files.
|
||||
Uses the shell command coming from variables `lpr-command' and
|
||||
`lpr-switches' as default.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-clean-directory "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Flag numerical backups for deletion.
|
||||
Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
|
||||
Positive prefix arg KEEP overrides `dired-kept-versions';
|
||||
Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive.
|
||||
|
||||
To clear the flags on these files, you can use \\[dired-flag-backup-files]
|
||||
with a prefix argument.
|
||||
|
||||
\(fn KEEP)" t nil)
|
||||
|
||||
(autoload 'dired-do-async-shell-command "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Run a shell command COMMAND on the marked files asynchronously.
|
||||
|
||||
Like `dired-do-shell-command', but adds `&' at the end of COMMAND
|
||||
to execute it asynchronously.
|
||||
|
||||
When operating on multiple files, asynchronous commands
|
||||
are executed in the background on each file in parallel.
|
||||
In shell syntax this means separating the individual commands
|
||||
with `&'. However, when COMMAND ends in `;' or `;&' then commands
|
||||
are executed in the background on each file sequentially waiting
|
||||
for each command to terminate before running the next command.
|
||||
In shell syntax this means separating the individual commands with `;'.
|
||||
|
||||
The output appears in the buffer `*Async Shell Command*'.
|
||||
|
||||
\(fn COMMAND &optional ARG FILE-LIST)" t nil)
|
||||
|
||||
(autoload 'dired-do-shell-command "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Run a shell command COMMAND on the marked files.
|
||||
If no files are marked or a numeric prefix arg is given,
|
||||
the next ARG files are used. Just \\[universal-argument] means the current file.
|
||||
The prompt mentions the file(s) or the marker, as appropriate.
|
||||
|
||||
If there is a `*' in COMMAND, surrounded by whitespace, this runs
|
||||
COMMAND just once with the entire file list substituted there.
|
||||
|
||||
If there is no `*', but there is a `?' in COMMAND, surrounded by
|
||||
whitespace, this runs COMMAND on each file individually with the
|
||||
file name substituted for `?'.
|
||||
|
||||
Otherwise, this runs COMMAND on each file individually with the
|
||||
file name added at the end of COMMAND (separated by a space).
|
||||
|
||||
`*' and `?' when not surrounded by whitespace have no special
|
||||
significance for `dired-do-shell-command', and are passed through
|
||||
normally to the shell, but you must confirm first.
|
||||
|
||||
If you want to use `*' as a shell wildcard with whitespace around
|
||||
it, write `*\"\"' in place of just `*'. This is equivalent to just
|
||||
`*' in the shell, but avoids Dired's special handling.
|
||||
|
||||
If COMMAND ends in `&', `;', or `;&', it is executed in the
|
||||
background asynchronously, and the output appears in the buffer
|
||||
`*Async Shell Command*'. When operating on multiple files and COMMAND
|
||||
ends in `&', the shell command is executed on each file in parallel.
|
||||
However, when COMMAND ends in `;' or `;&' then commands are executed
|
||||
in the background on each file sequentially waiting for each command
|
||||
to terminate before running the next command. You can also use
|
||||
`dired-do-async-shell-command' that automatically adds `&'.
|
||||
|
||||
Otherwise, COMMAND is executed synchronously, and the output
|
||||
appears in the buffer `*Shell Command Output*'.
|
||||
|
||||
This feature does not try to redisplay Dired buffers afterward, as
|
||||
there's no telling what files COMMAND may have changed.
|
||||
Type \\[dired-do-redisplay] to redisplay the marked files.
|
||||
|
||||
When COMMAND runs, its working directory is the top-level directory
|
||||
of the Dired buffer, so output files usually are created there
|
||||
instead of in a subdir.
|
||||
|
||||
In a noninteractive call (from Lisp code), you must specify
|
||||
the list of file names explicitly with the FILE-LIST argument, which
|
||||
can be produced by `dired-get-marked-files', for example.
|
||||
|
||||
\(fn COMMAND &optional ARG FILE-LIST)" t nil)
|
||||
|
||||
(autoload 'dired-run-shell-command "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
|
||||
|
||||
\(fn COMMAND)" nil nil)
|
||||
|
||||
(autoload 'dired-do-kill-lines "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Kill all marked lines (not the files).
|
||||
With a prefix argument, kill that many lines starting with the current line.
|
||||
\(A negative argument kills backward.)
|
||||
If you use this command with a prefix argument to kill the line
|
||||
for a file that is a directory, which you have inserted in the
|
||||
Dired buffer as a subdirectory, then it deletes that subdirectory
|
||||
from the buffer as well.
|
||||
To kill an entire subdirectory (without killing its line in the
|
||||
parent directory), go to its directory header line and use this
|
||||
command with a prefix argument (the value does not matter).
|
||||
|
||||
\(fn &optional ARG FMT)" t nil)
|
||||
|
||||
(autoload 'dired-compress-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
|
||||
|
||||
\(fn FILE)" nil nil)
|
||||
|
||||
(autoload 'dired-query "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Format PROMPT with ARGS, query user, and store the result in SYM.
|
||||
The return value is either nil or t.
|
||||
|
||||
The user may type y or SPC to accept once; n or DEL to skip once;
|
||||
! to accept this and subsequent queries; or q or ESC to decline
|
||||
this and subsequent queries.
|
||||
|
||||
If SYM is already bound to a non-nil value, this function may
|
||||
return automatically without querying the user. If SYM is !,
|
||||
return t; if SYM is q or ESC, return nil.
|
||||
|
||||
\(fn SYM PROMPT &rest ARGS)" nil nil)
|
||||
|
||||
(autoload 'dired-do-compress "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Compress or uncompress marked (or next ARG) files.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-byte-compile "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Byte compile marked (or next ARG) Emacs Lisp files.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-load "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Load the marked (or next ARG) Emacs Lisp files.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-redisplay "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Redisplay all marked (or next ARG) files.
|
||||
If on a subdir line, redisplay that subdirectory. In that case,
|
||||
a prefix arg lets you edit the `ls' switches used for the new listing.
|
||||
|
||||
Dired remembers switches specified with a prefix arg, so that reverting
|
||||
the buffer will not reset them. However, using `dired-undo' to re-insert
|
||||
or delete subdirectories can bypass this machinery. Hence, you sometimes
|
||||
may have to reset some subdirectory switches after a `dired-undo'.
|
||||
You can reset all subdirectory switches to the default using
|
||||
\\<dired-mode-map>\\[dired-reset-subdir-switches].
|
||||
See Info node `(emacs)Subdir switches' for more details.
|
||||
|
||||
\(fn &optional ARG TEST-FOR-SUBDIR)" t nil)
|
||||
|
||||
(autoload 'dired-add-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
|
||||
|
||||
\(fn FILENAME &optional MARKER-CHAR)" nil nil)
|
||||
|
||||
(autoload 'dired-remove-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
|
||||
|
||||
\(fn FILE)" nil nil)
|
||||
|
||||
(autoload 'dired-relist-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Create or update the line for FILE in all Dired buffers it would belong in.
|
||||
|
||||
\(fn FILE)" nil nil)
|
||||
|
||||
(autoload 'dired-copy-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
|
||||
|
||||
\(fn FROM TO OK-FLAG)" nil nil)
|
||||
|
||||
(autoload 'dired-rename-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
|
||||
|
||||
\(fn FILE NEWNAME OK-IF-ALREADY-EXISTS)" nil nil)
|
||||
|
||||
(autoload 'dired-create-directory "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Create a directory called DIRECTORY.
|
||||
If DIRECTORY already exists, signal an error.
|
||||
|
||||
\(fn DIRECTORY)" t nil)
|
||||
|
||||
(autoload 'dired-do-copy "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Copy all marked (or next ARG) files, or copy the current file.
|
||||
When operating on just the current file, prompt for the new name.
|
||||
|
||||
When operating on multiple or marked files, prompt for a target
|
||||
directory, and make the new copies in that directory, with the
|
||||
same names as the original files. The initial suggestion for the
|
||||
target directory is the Dired buffer's current directory (or, if
|
||||
`dired-dwim-target' is non-nil, the current directory of a
|
||||
neighboring Dired window).
|
||||
|
||||
If `dired-copy-preserve-time' is non-nil, this command preserves
|
||||
the modification time of each old file in the copy, similar to
|
||||
the \"-p\" option for the \"cp\" shell command.
|
||||
|
||||
This command copies symbolic links by creating new ones, similar
|
||||
to the \"-d\" option for the \"cp\" shell command.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-symlink "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Make symbolic links to current file or all marked (or next ARG) files.
|
||||
When operating on just the current file, you specify the new name.
|
||||
When operating on multiple or marked files, you specify a directory
|
||||
and new symbolic links are made in that directory
|
||||
with the same names that the files currently have. The default
|
||||
suggested for the target directory depends on the value of
|
||||
`dired-dwim-target', which see.
|
||||
|
||||
For relative symlinks, use \\[dired-do-relsymlink].
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-hardlink "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Add names (hard links) current file or all marked (or next ARG) files.
|
||||
When operating on just the current file, you specify the new name.
|
||||
When operating on multiple or marked files, you specify a directory
|
||||
and new hard links are made in that directory
|
||||
with the same names that the files currently have. The default
|
||||
suggested for the target directory depends on the value of
|
||||
`dired-dwim-target', which see.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-rename "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Rename current file or all marked (or next ARG) files.
|
||||
When renaming just the current file, you specify the new name.
|
||||
When renaming multiple or marked files, you specify a directory.
|
||||
This command also renames any buffers that are visiting the files.
|
||||
The default suggested for the target directory depends on the value
|
||||
of `dired-dwim-target', which see.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-do-rename-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Rename selected files whose names match REGEXP to NEWNAME.
|
||||
|
||||
With non-zero prefix argument ARG, the command operates on the next ARG
|
||||
files. Otherwise, it operates on all the marked files, or the current
|
||||
file if none are marked.
|
||||
|
||||
As each match is found, the user must type a character saying
|
||||
what to do with it. For directions, type \\[help-command] at that time.
|
||||
NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
|
||||
REGEXP defaults to the last regexp used.
|
||||
|
||||
With a zero prefix arg, renaming by regexp affects the absolute file name.
|
||||
Normally, only the non-directory part of the file name is used and changed.
|
||||
|
||||
\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
|
||||
|
||||
(autoload 'dired-do-copy-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Copy selected files whose names match REGEXP to NEWNAME.
|
||||
See function `dired-do-rename-regexp' for more info.
|
||||
|
||||
\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
|
||||
|
||||
(autoload 'dired-do-hardlink-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Hardlink selected files whose names match REGEXP to NEWNAME.
|
||||
See function `dired-do-rename-regexp' for more info.
|
||||
|
||||
\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
|
||||
|
||||
(autoload 'dired-do-symlink-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Symlink selected files whose names match REGEXP to NEWNAME.
|
||||
See function `dired-do-rename-regexp' for more info.
|
||||
|
||||
\(fn REGEXP NEWNAME &optional ARG WHOLE-NAME)" t nil)
|
||||
|
||||
(autoload 'dired-upcase "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Rename all marked (or next ARG) files to upper case.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-downcase "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Rename all marked (or next ARG) files to lower case.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'dired-maybe-insert-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Insert this subdirectory into the same dired buffer.
|
||||
If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
|
||||
else inserts it at its natural place (as `ls -lR' would have done).
|
||||
With a prefix arg, you may edit the ls switches used for this listing.
|
||||
You can add `R' to the switches to expand the whole tree starting at
|
||||
this subdirectory.
|
||||
This function takes some pains to conform to `ls -lR' output.
|
||||
|
||||
Dired remembers switches specified with a prefix arg, so that reverting
|
||||
the buffer will not reset them. However, using `dired-undo' to re-insert
|
||||
or delete subdirectories can bypass this machinery. Hence, you sometimes
|
||||
may have to reset some subdirectory switches after a `dired-undo'.
|
||||
You can reset all subdirectory switches to the default using
|
||||
\\<dired-mode-map>\\[dired-reset-subdir-switches].
|
||||
See Info node `(emacs)Subdir switches' for more details.
|
||||
|
||||
\(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil)
|
||||
|
||||
(autoload 'dired-insert-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Insert this subdirectory into the same Dired buffer.
|
||||
If it is already present, overwrite the previous entry;
|
||||
otherwise, insert it at its natural place (as `ls -lR' would
|
||||
have done).
|
||||
With a prefix arg, you may edit the `ls' switches used for this listing.
|
||||
You can add `R' to the switches to expand the whole tree starting at
|
||||
this subdirectory.
|
||||
This function takes some pains to conform to `ls -lR' output.
|
||||
|
||||
\(fn DIRNAME &optional SWITCHES NO-ERROR-IF-NOT-DIR-P)" t nil)
|
||||
|
||||
(autoload 'dired-prev-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Go to previous subdirectory, regardless of level.
|
||||
When called interactively and not on a subdir line, go to this subdir's line.
|
||||
|
||||
\(fn ARG &optional NO-ERROR-IF-NOT-FOUND NO-SKIP)" t nil)
|
||||
|
||||
(autoload 'dired-goto-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Go to end of header line of DIR in this dired buffer.
|
||||
Return value of point on success, otherwise return nil.
|
||||
The next char is either \\n, or \\r if DIR is hidden.
|
||||
|
||||
\(fn DIR)" t nil)
|
||||
|
||||
(autoload 'dired-mark-subdir-files "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Mark all files except `.' and `..' in current subdirectory.
|
||||
If the Dired buffer shows multiple directories, this command
|
||||
marks the files listed in the subdirectory that point is in.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'dired-kill-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Remove all lines of current subdirectory.
|
||||
Lower levels are unaffected.
|
||||
|
||||
\(fn &optional REMEMBER-MARKS)" t nil)
|
||||
|
||||
(autoload 'dired-tree-up "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Go up ARG levels in the dired tree.
|
||||
|
||||
\(fn ARG)" t nil)
|
||||
|
||||
(autoload 'dired-tree-down "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Go down in the dired tree.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'dired-hide-subdir "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Hide or unhide the current subdirectory and move to next directory.
|
||||
Optional prefix arg is a repeat factor.
|
||||
Use \\[dired-hide-all] to (un)hide all directories.
|
||||
|
||||
\(fn ARG)" t nil)
|
||||
|
||||
(autoload 'dired-hide-all "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Hide all subdirectories, leaving only their header lines.
|
||||
If there is already something hidden, make everything visible again.
|
||||
Use \\[dired-hide-subdir] to (un)hide a particular subdirectory.
|
||||
|
||||
\(fn &optional IGNORED)" t nil)
|
||||
|
||||
(autoload 'dired-isearch-filenames-setup "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Set up isearch to search in Dired file names.
|
||||
Intended to be added to `isearch-mode-hook'.
|
||||
|
||||
\(fn)" nil nil)
|
||||
|
||||
(autoload 'dired-isearch-filenames "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Search for a string using Isearch only in file names in the Dired buffer.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'dired-isearch-filenames-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Search for a regexp using Isearch only in file names in the Dired buffer.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'dired-do-isearch "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Search for a string through all marked files using Isearch.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'dired-do-isearch-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Search for a regexp through all marked files using Isearch.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'dired-do-search "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Search through all marked files for a match for REGEXP.
|
||||
Stops when a match is found.
|
||||
To continue searching for next match, use command \\[tags-loop-continue].
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'dired-do-query-replace-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Do `query-replace-regexp' of FROM with TO, on all marked files.
|
||||
Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
|
||||
If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
|
||||
with the command \\[tags-loop-continue].
|
||||
|
||||
\(fn FROM TO &optional DELIMITED)" t nil)
|
||||
|
||||
(autoload 'dired-show-file-type "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-aux" "\
|
||||
Print the type of FILE, according to the `file' command.
|
||||
If you give a prefix to this command, and FILE is a symbolic
|
||||
link, then the type of the file linked to by FILE is printed
|
||||
instead.
|
||||
|
||||
\(fn FILE &optional DEREF-SYMLINKS)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x"
|
||||
;;;;;; "dired-x.el" "732d08c173295dd14a0736fa222f532a")
|
||||
;;; Generated autoloads from dired-x.el
|
||||
|
||||
(autoload 'dired-jump "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" "\
|
||||
Jump to Dired buffer corresponding to current buffer.
|
||||
If in a file, Dired the current directory and move to file's line.
|
||||
If in Dired already, pop up a level and goto old directory's line.
|
||||
In case the proper Dired file line cannot be found, refresh the dired
|
||||
buffer and try again.
|
||||
When OTHER-WINDOW is non-nil, jump to Dired buffer in other window.
|
||||
Interactively with prefix argument, read FILE-NAME and
|
||||
move to its line in dired.
|
||||
|
||||
\(fn &optional OTHER-WINDOW FILE-NAME)" t nil)
|
||||
|
||||
(autoload 'dired-jump-other-window "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" "\
|
||||
Like \\[dired-jump] (`dired-jump') but in other window.
|
||||
|
||||
\(fn &optional FILE-NAME)" t nil)
|
||||
|
||||
(autoload 'dired-do-relsymlink "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/dired-x" "\
|
||||
Relative symlink all marked (or next ARG) files into a directory.
|
||||
Otherwise make a relative symbolic link to the current file.
|
||||
This creates relative symbolic links like
|
||||
|
||||
foo -> ../bar/foo
|
||||
|
||||
not absolute ones like
|
||||
|
||||
foo -> /ugly/file/name/that/may/change/any/day/bar/foo
|
||||
|
||||
For absolute symlinks, use \\[dired-do-symlink].
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "dired-aux" "dired-aux.el" "04b4cb6bde3220f55574eb1d99ac0d29")
|
||||
;;; Generated autoloads from dired-aux.el
|
||||
|
||||
|
@ -2437,6 +2437,35 @@ If FILE is nil, try to load a default file. The default file names are
|
||||
(error nil))
|
||||
(setq tpu-edt-mode nil))
|
||||
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras"
|
||||
;;;;;; "tpu-extras.el" "ae3bca6f21640b5713a7c58c40f30847")
|
||||
;;; Generated autoloads from tpu-extras.el
|
||||
|
||||
(autoload 'tpu-cursor-free-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\
|
||||
Minor mode to allow the cursor to move freely about the screen.
|
||||
With a prefix argument ARG, enable the mode if ARG is positive,
|
||||
and disable it otherwise. If called from Lisp, enable the mode
|
||||
if ARG is omitted or nil.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'tpu-set-scroll-margins "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\
|
||||
Set scroll margins.
|
||||
|
||||
\(fn TOP BOTTOM)" t nil)
|
||||
|
||||
(autoload 'tpu-set-cursor-free "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\
|
||||
Allow the cursor to move freely about the screen.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'tpu-set-cursor-bound "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/emulation/tpu-extras" "\
|
||||
Constrain the cursor to the flow of the text.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins
|
||||
;;;;;; tpu-cursor-free-mode) "tpu-extras" "tpu-extras.el" "ae3bca6f21640b5713a7c58c40f30847")
|
||||
|
@ -3,7 +3,8 @@
|
||||
;; Copyright (C) 2002-2003, 2009-2013 Free Software Foundation, Inc.
|
||||
|
||||
;; Emacs Lisp Archive Entry
|
||||
;; Package: htmlfontify
|
||||
;; Package:
|
||||
htmlfontify
|
||||
;; Filename: htmlfontify.el
|
||||
;; Version: 0.21
|
||||
;; Keywords: html, hypermedia, markup, etags
|
||||
@ -2410,6 +2411,25 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'."
|
||||
(let ((file (hfy-initfile)))
|
||||
(load file 'NOERROR nil nil) ))
|
||||
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap"
|
||||
;;;;;; "hfy-cmap.el" "df4e418d0d8749ead9d32bb2c7a5bd56")
|
||||
;;; Generated autoloads from hfy-cmap.el
|
||||
(push (purecopy '(htmlfontify 0 20)) package--builtin-versions)
|
||||
(autoload 'htmlfontify-load-rgb-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap" "\
|
||||
Load an X11 style rgb.txt FILE.
|
||||
Search `hfy-rgb-load-path' if FILE is not specified.
|
||||
Loads the variable `hfy-rgb-txt-colour-map', which is used by
|
||||
`hfy-fallback-colour-values'.
|
||||
|
||||
\(fn &optional FILE)" t nil)
|
||||
|
||||
(autoload 'hfy-fallback-colour-values "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap" "\
|
||||
Use a fallback method for obtaining the rgb values for a color.
|
||||
|
||||
\(fn COLOUR-STRING)" nil nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads (hfy-fallback-colour-values htmlfontify-load-rgb-file)
|
||||
;;;;;; "hfy-cmap" "hfy-cmap.el" "3f97eeabe72027099da579f6ef9ae0bd")
|
||||
|
371
lisp/ibuffer.el
371
lisp/ibuffer.el
@ -2628,6 +2628,377 @@ will be inserted before the group at point."
|
||||
|
||||
;;; Start of automatically extracted autoloads.
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext"
|
||||
;;;;;; "ibuf-ext.el" "d06b2735a74954e0c6922a811de7608c")
|
||||
;;; Generated autoloads from ibuf-ext.el
|
||||
|
||||
(autoload 'ibuffer-auto-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Toggle use of Ibuffer's auto-update facility (Ibuffer Auto mode).
|
||||
With a prefix argument ARG, enable Ibuffer Auto mode if ARG is
|
||||
positive, and disable it otherwise. If called from Lisp, enable
|
||||
the mode if ARG is omitted or nil.
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mouse-filter-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Enable or disable filtering by the major mode chosen via mouse.
|
||||
|
||||
\(fn EVENT)" t nil)
|
||||
|
||||
(autoload 'ibuffer-interactive-filter-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Enable or disable filtering by the major mode at point.
|
||||
|
||||
\(fn EVENT-OR-POINT)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mouse-toggle-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Toggle the display status of the filter group chosen with the mouse.
|
||||
|
||||
\(fn EVENT)" t nil)
|
||||
|
||||
(autoload 'ibuffer-toggle-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Toggle the display status of the filter group on this line.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-forward-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Move point forwards by COUNT filtering groups.
|
||||
|
||||
\(fn &optional COUNT)" t nil)
|
||||
|
||||
(autoload 'ibuffer-backward-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Move point backwards by COUNT filtering groups.
|
||||
|
||||
\(fn &optional COUNT)" t nil)
|
||||
(autoload 'ibuffer-do-shell-command-pipe "ibuf-ext")
|
||||
(autoload 'ibuffer-do-shell-command-pipe-replace "ibuf-ext")
|
||||
(autoload 'ibuffer-do-shell-command-file "ibuf-ext")
|
||||
(autoload 'ibuffer-do-eval "ibuf-ext")
|
||||
(autoload 'ibuffer-do-view-and-eval "ibuf-ext")
|
||||
(autoload 'ibuffer-do-rename-uniquely "ibuf-ext")
|
||||
(autoload 'ibuffer-do-revert "ibuf-ext")
|
||||
(autoload 'ibuffer-do-isearch "ibuf-ext")
|
||||
(autoload 'ibuffer-do-isearch-regexp "ibuf-ext")
|
||||
(autoload 'ibuffer-do-replace-regexp "ibuf-ext")
|
||||
(autoload 'ibuffer-do-query-replace "ibuf-ext")
|
||||
(autoload 'ibuffer-do-query-replace-regexp "ibuf-ext")
|
||||
(autoload 'ibuffer-do-print "ibuf-ext")
|
||||
|
||||
(autoload 'ibuffer-included-in-filters-p "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
|
||||
|
||||
\(fn BUF FILTERS)" nil nil)
|
||||
|
||||
(autoload 'ibuffer-filters-to-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Make the current filters into a filtering group.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-set-filter-groups-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Set the current filter groups to filter by mode.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-pop-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Remove the first filter group.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-decompose-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Decompose the filter group GROUP into active filters.
|
||||
|
||||
\(fn GROUP)" t nil)
|
||||
|
||||
(autoload 'ibuffer-clear-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Remove all filter groups.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-jump-to-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Move point to the filter group whose name is NAME.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-kill-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Kill the filter group named NAME.
|
||||
The group will be added to `ibuffer-filter-group-kill-ring'.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-kill-line "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Kill the filter group at point.
|
||||
See also `ibuffer-kill-filter-group'.
|
||||
|
||||
\(fn &optional ARG INTERACTIVE-P)" t nil)
|
||||
|
||||
(autoload 'ibuffer-yank "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Yank the last killed filter group before group at point.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-yank-filter-group "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Yank the last killed filter group before group named NAME.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-save-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Save all active filter groups GROUPS as NAME.
|
||||
They are added to `ibuffer-saved-filter-groups'. Interactively,
|
||||
prompt for NAME, and use the current filters.
|
||||
|
||||
\(fn NAME GROUPS)" t nil)
|
||||
|
||||
(autoload 'ibuffer-delete-saved-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Delete saved filter groups with NAME.
|
||||
They are removed from `ibuffer-saved-filter-groups'.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-switch-to-saved-filter-groups "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Set this buffer's filter groups to saved version with NAME.
|
||||
The value from `ibuffer-saved-filter-groups' is used.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-filter-disable "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Disable all filters currently in effect in this buffer.
|
||||
With optional arg DELETE-FILTER-GROUPS non-nil, delete all filter
|
||||
group definitions by setting `ibuffer-filter-groups' to nil.
|
||||
|
||||
\(fn &optional DELETE-FILTER-GROUPS)" t nil)
|
||||
|
||||
(autoload 'ibuffer-pop-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Remove the top filter in this buffer.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-decompose-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Separate the top compound filter (OR, NOT, or SAVED) in this buffer.
|
||||
|
||||
This means that the topmost filter on the filtering stack, which must
|
||||
be a complex filter like (OR [name: foo] [mode: bar-mode]), will be
|
||||
turned into two separate filters [name: foo] and [mode: bar-mode].
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-exchange-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Exchange the top two filters on the stack in this buffer.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-negate-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Negate the sense of the top filter in the current buffer.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-or-filter "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Replace the top two filters in this buffer with their logical OR.
|
||||
If optional argument REVERSE is non-nil, instead break the top OR
|
||||
filter into parts.
|
||||
|
||||
\(fn &optional REVERSE)" t nil)
|
||||
|
||||
(autoload 'ibuffer-save-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Save FILTERS in this buffer with name NAME in `ibuffer-saved-filters'.
|
||||
Interactively, prompt for NAME, and use the current filters.
|
||||
|
||||
\(fn NAME FILTERS)" t nil)
|
||||
|
||||
(autoload 'ibuffer-delete-saved-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Delete saved filters with NAME from `ibuffer-saved-filters'.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-add-saved-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Add saved filters from `ibuffer-saved-filters' to this buffer's filters.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-switch-to-saved-filters "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Set this buffer's filters to filters with NAME from `ibuffer-saved-filters'.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
(autoload 'ibuffer-filter-by-mode "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-used-mode "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-derived-mode "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-name "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-filename "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-size-gt "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-size-lt "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-content "ibuf-ext")
|
||||
(autoload 'ibuffer-filter-by-predicate "ibuf-ext")
|
||||
|
||||
(autoload 'ibuffer-toggle-sorting-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Toggle the current sorting mode.
|
||||
Default sorting modes are:
|
||||
Recency - the last time the buffer was viewed
|
||||
Name - the name of the buffer
|
||||
Major Mode - the name of the major mode of the buffer
|
||||
Size - the size of the buffer
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-invert-sorting "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Toggle whether or not sorting is in reverse order.
|
||||
|
||||
\(fn)" t nil)
|
||||
(autoload 'ibuffer-do-sort-by-major-mode "ibuf-ext")
|
||||
(autoload 'ibuffer-do-sort-by-mode-name "ibuf-ext")
|
||||
(autoload 'ibuffer-do-sort-by-alphabetic "ibuf-ext")
|
||||
(autoload 'ibuffer-do-sort-by-size "ibuf-ext")
|
||||
(autoload 'ibuffer-do-sort-by-filename/process "ibuf-ext")
|
||||
|
||||
(autoload 'ibuffer-bs-show "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Emulate `bs-show' from the bs.el package.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-add-to-tmp-hide "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Add REGEXP to `ibuffer-tmp-hide-regexps'.
|
||||
This means that buffers whose name matches REGEXP will not be shown
|
||||
for this Ibuffer session.
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'ibuffer-add-to-tmp-show "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Add REGEXP to `ibuffer-tmp-show-regexps'.
|
||||
This means that buffers whose name matches REGEXP will always be shown
|
||||
for this Ibuffer session.
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'ibuffer-forward-next-marked "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Move forward by COUNT marked buffers (default 1).
|
||||
|
||||
If MARK is non-nil, it should be a character denoting the type of mark
|
||||
to move by. The default is `ibuffer-marked-char'.
|
||||
|
||||
If DIRECTION is non-nil, it should be an integer; negative integers
|
||||
mean move backwards, non-negative integers mean move forwards.
|
||||
|
||||
\(fn &optional COUNT MARK DIRECTION)" t nil)
|
||||
|
||||
(autoload 'ibuffer-backwards-next-marked "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Move backwards by COUNT marked buffers (default 1).
|
||||
|
||||
If MARK is non-nil, it should be a character denoting the type of mark
|
||||
to move by. The default is `ibuffer-marked-char'.
|
||||
|
||||
\(fn &optional COUNT MARK)" t nil)
|
||||
|
||||
(autoload 'ibuffer-do-kill-lines "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Hide all of the currently marked lines.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-jump-to-buffer "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Move point to the buffer whose name is NAME.
|
||||
|
||||
If called interactively, prompt for a buffer name and go to the
|
||||
corresponding line in the Ibuffer buffer. If said buffer is in a
|
||||
hidden group filter, open it.
|
||||
|
||||
If `ibuffer-jump-offer-only-visible-buffers' is non-nil, only offer
|
||||
visible buffers in the completion list. Calling the command with
|
||||
a prefix argument reverses the meaning of that variable.
|
||||
|
||||
\(fn NAME)" t nil)
|
||||
|
||||
(autoload 'ibuffer-diff-with-file "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
View the differences between marked buffers and their associated files.
|
||||
If no buffers are marked, use buffer at point.
|
||||
This requires the external program \"diff\" to be in your `exec-path'.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-copy-filename-as-kill "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Copy filenames of marked buffers into the kill ring.
|
||||
|
||||
The names are separated by a space.
|
||||
If a buffer has no filename, it is ignored.
|
||||
|
||||
With no prefix arg, use the filename sans its directory of each marked file.
|
||||
With a zero prefix arg, use the complete filename of each marked file.
|
||||
With \\[universal-argument], use the filename of each marked file relative
|
||||
to `ibuffer-default-directory' if non-nil, otherwise `default-directory'.
|
||||
|
||||
You can then feed the file name(s) to other commands with \\[yank].
|
||||
|
||||
\(fn &optional ARG)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-by-name-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all buffers whose name matches REGEXP.
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-by-mode-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all buffers whose major mode matches REGEXP.
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-by-file-name-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all buffers whose file name matches REGEXP.
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-by-mode "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all buffers whose major mode equals MODE.
|
||||
|
||||
\(fn MODE)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-modified-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all modified buffers.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-unsaved-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all modified buffers that have an associated file.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-dissociated-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all buffers whose associated file does not exist.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-help-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark buffers whose major mode is in variable `ibuffer-help-buffer-modes'.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-compressed-file-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark buffers whose associated file is compressed.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-old-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark buffers which have not been viewed in `ibuffer-old-time' hours.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-special-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all buffers whose name begins and ends with '*'.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-read-only-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all read-only buffers.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-mark-dired-buffers "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
Mark all `dired' buffers.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'ibuffer-do-occur "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ibuf-ext" "\
|
||||
View lines which match REGEXP in all marked buffers.
|
||||
Optional argument NLINES says how many lines of context to display: it
|
||||
defaults to one.
|
||||
|
||||
\(fn REGEXP &optional NLINES)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "d06b2735a74954e0c6922a811de7608c")
|
||||
;;; Generated autoloads from ibuf-ext.el
|
||||
|
||||
|
@ -4612,6 +4612,229 @@ encoded string (and the same mask) will decode the string."
|
||||
|
||||
;;; Start of automatically extracted autoloads.
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailedit"
|
||||
;;;;;; "rmailedit.el" "0b056146d4775080a1847b8ce7527bc5")
|
||||
;;; Generated autoloads from rmailedit.el
|
||||
|
||||
(autoload 'rmail-edit-current-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailedit" "\
|
||||
Edit the contents of this message.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd"
|
||||
;;;;;; "rmailkwd.el" "b5337290fd35bbc11888afb25d767195")
|
||||
;;; Generated autoloads from rmailkwd.el
|
||||
|
||||
(autoload 'rmail-add-label "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\
|
||||
Add LABEL to labels associated with current RMAIL message.
|
||||
Completes (see `rmail-read-label') over known labels when reading.
|
||||
LABEL may be a symbol or string. Only one label is allowed.
|
||||
|
||||
\(fn LABEL)" t nil)
|
||||
|
||||
(autoload 'rmail-kill-label "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\
|
||||
Remove LABEL from labels associated with current RMAIL message.
|
||||
Completes (see `rmail-read-label') over known labels when reading.
|
||||
LABEL may be a symbol or string. Only one label is allowed.
|
||||
|
||||
\(fn LABEL)" t nil)
|
||||
|
||||
(autoload 'rmail-read-label "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\
|
||||
Read a label with completion, prompting with PROMPT.
|
||||
Completions are chosen from `rmail-label-obarray'. The default
|
||||
is `rmail-last-label', if that is non-nil. Updates `rmail-last-label'
|
||||
according to the choice made, and returns a symbol.
|
||||
|
||||
\(fn PROMPT)" nil nil)
|
||||
|
||||
(autoload 'rmail-previous-labeled-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\
|
||||
Show previous message with one of the labels LABELS.
|
||||
LABELS should be a comma-separated list of label names.
|
||||
If LABELS is empty, the last set of labels specified is used.
|
||||
With prefix argument N moves backward N messages with these labels.
|
||||
|
||||
\(fn N LABELS)" t nil)
|
||||
|
||||
(autoload 'rmail-next-labeled-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailkwd" "\
|
||||
Show next message with one of the labels LABELS.
|
||||
LABELS should be a comma-separated list of label names.
|
||||
If LABELS is empty, the last set of labels specified is used.
|
||||
With prefix argument N moves forward N messages with these labels.
|
||||
|
||||
\(fn N LABELS)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmm"
|
||||
;;;;;; "rmailmm.el" "8c14f4cf6e7dacb0c94fd300d814caf7")
|
||||
;;; Generated autoloads from rmailmm.el
|
||||
|
||||
(autoload 'rmail-mime "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmm" "\
|
||||
Toggle the display of a MIME message.
|
||||
|
||||
The actual behavior depends on the value of `rmail-enable-mime'.
|
||||
|
||||
If `rmail-enable-mime' is non-nil (the default), this command toggles
|
||||
the display of a MIME message between decoded presentation form and
|
||||
raw data. With optional prefix argument ARG, it toggles the display only
|
||||
of the MIME entity at point, if there is one. The optional argument
|
||||
STATE forces a particular display state, rather than toggling.
|
||||
`raw' forces raw mode, any other non-nil value forces decoded mode.
|
||||
|
||||
If `rmail-enable-mime' is nil, this creates a temporary \"*RMAIL*\"
|
||||
buffer holding a decoded copy of the message. Inline content-types are
|
||||
handled according to `rmail-mime-media-type-handlers-alist'.
|
||||
By default, this displays text and multipart messages, and offers to
|
||||
download attachments as specified by `rmail-mime-attachment-dirs-alist'.
|
||||
The arguments ARG and STATE have no effect in this case.
|
||||
|
||||
\(fn &optional ARG STATE)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmsc"
|
||||
;;;;;; "rmailmsc.el" "8a2466563b4a463710531d01766c07a3")
|
||||
;;; Generated autoloads from rmailmsc.el
|
||||
|
||||
(autoload 'set-rmail-inbox-list "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailmsc" "\
|
||||
Set the inbox list of the current RMAIL file to FILE-NAME.
|
||||
You can specify one file name, or several names separated by commas.
|
||||
If FILE-NAME is empty, remove any existing inbox list.
|
||||
|
||||
This applies only to the current session.
|
||||
|
||||
\(fn FILE-NAME)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort"
|
||||
;;;;;; "rmailsort.el" "3e3a30326fc95d7f17835906c2ccb19f")
|
||||
;;; Generated autoloads from rmailsort.el
|
||||
|
||||
(autoload 'rmail-sort-by-date "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by \"Date\" header.
|
||||
If prefix argument REVERSE is non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE)" t nil)
|
||||
|
||||
(autoload 'rmail-sort-by-subject "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by \"Subject\" header.
|
||||
Ignores any \"Re: \" prefix. If prefix argument REVERSE is
|
||||
non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE)" t nil)
|
||||
|
||||
(autoload 'rmail-sort-by-author "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by author.
|
||||
This uses either the \"From\" or \"Sender\" header, downcased.
|
||||
If prefix argument REVERSE is non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE)" t nil)
|
||||
|
||||
(autoload 'rmail-sort-by-recipient "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by recipient.
|
||||
This uses either the \"To\" or \"Apparently-To\" header, downcased.
|
||||
If prefix argument REVERSE is non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE)" t nil)
|
||||
|
||||
(autoload 'rmail-sort-by-correspondent "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by other correspondent.
|
||||
This uses either the \"From\", \"Sender\", \"To\", or
|
||||
\"Apparently-To\" header, downcased. Uses the first header not
|
||||
excluded by `mail-dont-reply-to-names'. If prefix argument
|
||||
REVERSE is non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE)" t nil)
|
||||
|
||||
(autoload 'rmail-sort-by-lines "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by the number of lines.
|
||||
If prefix argument REVERSE is non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE)" t nil)
|
||||
|
||||
(autoload 'rmail-sort-by-labels "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsort" "\
|
||||
Sort messages of current Rmail buffer by labels.
|
||||
LABELS is a comma-separated list of labels. The order of these
|
||||
labels specifies the order of messages: messages with the first
|
||||
label come first, messages with the second label come second, and
|
||||
so on. Messages that have none of these labels come last.
|
||||
If prefix argument REVERSE is non-nil, sorts in reverse order.
|
||||
|
||||
\(fn REVERSE LABELS)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum"
|
||||
;;;;;; "rmailsum.el" "9005bd5da3e21d1cc173e86fd9fec3c9")
|
||||
;;; Generated autoloads from rmailsum.el
|
||||
|
||||
(autoload 'rmail-summary "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\
|
||||
Display a summary of all messages, one line per message.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'rmail-summary-by-labels "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\
|
||||
Display a summary of all messages with one or more LABELS.
|
||||
LABELS should be a string containing the desired labels, separated by commas.
|
||||
|
||||
\(fn LABELS)" t nil)
|
||||
|
||||
(autoload 'rmail-summary-by-recipients "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\
|
||||
Display a summary of all messages with the given RECIPIENTS.
|
||||
Normally checks the To, From and Cc fields of headers;
|
||||
but if PRIMARY-ONLY is non-nil (prefix arg given),
|
||||
only look in the To and From fields.
|
||||
RECIPIENTS is a string of regexps separated by commas.
|
||||
|
||||
\(fn RECIPIENTS &optional PRIMARY-ONLY)" t nil)
|
||||
|
||||
(autoload 'rmail-summary-by-regexp "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\
|
||||
Display a summary of all messages according to regexp REGEXP.
|
||||
If the regular expression is found in the header of the message
|
||||
\(including in the date and other lines, as well as the subject line),
|
||||
Emacs will list the message in the summary.
|
||||
|
||||
\(fn REGEXP)" t nil)
|
||||
|
||||
(autoload 'rmail-summary-by-topic "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\
|
||||
Display a summary of all messages with the given SUBJECT.
|
||||
Normally checks just the Subject field of headers; but with prefix
|
||||
argument WHOLE-MESSAGE is non-nil, looks in the whole message.
|
||||
SUBJECT is a string of regexps separated by commas.
|
||||
|
||||
\(fn SUBJECT &optional WHOLE-MESSAGE)" t nil)
|
||||
|
||||
(autoload 'rmail-summary-by-senders "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/rmailsum" "\
|
||||
Display a summary of all messages whose \"From\" field matches SENDERS.
|
||||
SENDERS is a string of regexps separated by commas.
|
||||
|
||||
\(fn SENDERS)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/undigest"
|
||||
;;;;;; "undigest.el" "9b273a3e15b5496ab6121b585d8bd3b3")
|
||||
;;; Generated autoloads from undigest.el
|
||||
|
||||
(autoload 'undigestify-rmail-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/undigest" "\
|
||||
Break up a digest message into its constituent messages.
|
||||
Leaves original message, deleted, before the undigestified messages.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
(autoload 'unforward-rmail-message "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/mail/undigest" "\
|
||||
Extract a forwarded message from the containing message.
|
||||
This puts the forwarded message into a separate rmail message following
|
||||
the containing message. This command is only useful when messages are
|
||||
forwarded with `rmail-enable-mime-composing' set to nil.
|
||||
|
||||
\(fn)" t nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads (rmail-edit-current-message) "rmailedit" "rmailedit.el"
|
||||
;;;;;; "0b056146d4775080a1847b8ce7527bc5")
|
||||
;;; Generated autoloads from rmailedit.el
|
||||
|
@ -1,3 +1,4 @@
|
||||
|
||||
;;; ps-print.el --- print text from the buffer as PostScript
|
||||
|
||||
;; Copyright (C) 1993-2013 Free Software Foundation, Inc.
|
||||
@ -6584,6 +6585,73 @@ If FACE is not a valid face name, use default face."
|
||||
;; To make this file smaller, some commands go in a separate file.
|
||||
;; But autoload them here to make the separation invisible.
|
||||
|
||||
;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule"
|
||||
;;;;;; "ps-mule.el" "a90e8414a27ac8fdf093251ac648d761")
|
||||
;;; Generated autoloads from ps-mule.el
|
||||
|
||||
(defvar ps-multibyte-buffer nil "\
|
||||
Specifies the multi-byte buffer handling.
|
||||
|
||||
Valid values are:
|
||||
|
||||
nil This is the value to use the default settings;
|
||||
by default, this only works to print buffers with
|
||||
only ASCII and Latin characters. But this default
|
||||
setting can be changed by setting the variable
|
||||
`ps-mule-font-info-database-default' differently.
|
||||
The initial value of this variable is
|
||||
`ps-mule-font-info-database-latin' (see
|
||||
documentation).
|
||||
|
||||
`non-latin-printer' This is the value to use when you have a Japanese
|
||||
or Korean PostScript printer and want to print
|
||||
buffer with ASCII, Latin-1, Japanese (JISX0208 and
|
||||
JISX0201-Kana) and Korean characters. At present,
|
||||
it was not tested with the Korean characters
|
||||
printing. If you have a korean PostScript printer,
|
||||
please, test it.
|
||||
|
||||
`bdf-font' This is the value to use when you want to print
|
||||
buffer with BDF fonts. BDF fonts include both latin
|
||||
and non-latin fonts. BDF (Bitmap Distribution
|
||||
Format) is a format used for distributing X's font
|
||||
source file. BDF fonts are included in
|
||||
`intlfonts-1.2' which is a collection of X11 fonts
|
||||
for all characters supported by Emacs. In order to
|
||||
use this value, be sure to have installed
|
||||
`intlfonts-1.2' and set the variable
|
||||
`bdf-directory-list' appropriately (see ps-bdf.el for
|
||||
documentation of this variable).
|
||||
|
||||
`bdf-font-except-latin' This is like `bdf-font' except that it uses
|
||||
PostScript default fonts to print ASCII and Latin-1
|
||||
characters. This is convenient when you want or
|
||||
need to use both latin and non-latin characters on
|
||||
the same buffer. See `ps-font-family',
|
||||
`ps-header-font-family' and `ps-font-info-database'.
|
||||
|
||||
Any other value is treated as nil.")
|
||||
|
||||
(custom-autoload 'ps-multibyte-buffer "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" t)
|
||||
|
||||
(autoload 'ps-mule-initialize "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" "\
|
||||
Initialize global data for printing multi-byte characters.
|
||||
|
||||
\(fn)" nil nil)
|
||||
|
||||
(autoload 'ps-mule-begin-job "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" "\
|
||||
Start printing job for multi-byte chars between FROM and TO.
|
||||
It checks if all multi-byte characters in the region are printable or not.
|
||||
|
||||
\(fn FROM TO)" nil nil)
|
||||
|
||||
(autoload 'ps-mule-end-job "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/ps-mule" "\
|
||||
Finish printing job for multi-byte chars.
|
||||
|
||||
\(fn)" nil nil)
|
||||
|
||||
;;;***
|
||||
|
||||
;;;### (autoloads nil "ps-mule" "ps-mule.el" "a90e8414a27ac8fdf093251ac648d761")
|
||||
;;; Generated autoloads from ps-mule.el
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user