------------------------------------------------------------ revno: 114882 committer: Jan D. branch nick: trunk timestamp: Thu 2013-10-31 09:32:42 +0100 message: * emacs.c (main): Skip -psn args on OSX even if ! isatty (0). diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2013-10-31 07:18:42 +0000 +++ src/ChangeLog 2013-10-31 08:32:42 +0000 @@ -1,3 +1,7 @@ +2013-10-31 Jan Djärv + + * emacs.c (main): Skip -psn args on OSX even if ! isatty (0). + 2013-10-31 Glenn Morris * emacs.c (original_pwd): New char. === modified file 'src/emacs.c' --- src/emacs.c 2013-10-31 07:18:42 +0000 +++ src/emacs.c 2013-10-31 08:32:42 +0000 @@ -1201,7 +1201,7 @@ chdir fails. */ if (! inhibit_window_system && ! isatty (0)) chdir (getenv ("HOME")); - else if (skip_args < argc) + if (skip_args < argc) { if (!strncmp (argv[skip_args], "-psn", 4)) { ------------------------------------------------------------ revno: 114881 committer: Glenn Morris branch nick: trunk timestamp: Thu 2013-10-31 00:27:35 -0700 message: * lisp/Makefile.in (custom-deps, finder-data): No need to setq the target variables, we are in the right directory and the defaults work fine. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2013-10-30 20:27:35 +0000 +++ lisp/ChangeLog 2013-10-31 07:27:35 +0000 @@ -1,3 +1,8 @@ +2013-10-31 Glenn Morris + + * Makefile.in (custom-deps, finder-data): No need to setq the target + variables, we are in the right directory and the defaults work fine. + 2013-10-30 Glenn Morris * Makefile.in (autoloads): Do not use abs_lisp. === modified file 'lisp/Makefile.in' --- lisp/Makefile.in 2013-10-31 00:40:46 +0000 +++ lisp/Makefile.in 2013-10-31 07:27:35 +0000 @@ -168,14 +168,14 @@ custom-deps: doit cd $(lisp) && $(setwins_almost); \ echo Directories: $$wins; \ - $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file (unmsys--file-name "$(abs_lisp)/cus-load.el"))' -f custom-make-dependencies $$wins + $(emacs) -l cus-dep -f custom-make-dependencies $$wins $(lisp)/finder-inf.el: $(MAKE) $(MFLAGS) finder-data finder-data: doit cd $(lisp) && $(setwins_almost); \ echo Directories: $$wins; \ - $(emacs) -l finder --eval '(setq generated-finder-keywords-file (unmsys--file-name "$(abs_lisp)/finder-inf.el"))' -f finder-compile-keywords-make-dist $$wins + $(emacs) -l finder -f finder-compile-keywords-make-dist $$wins # The chmod +w is to handle env var CVSREAD=1. # Use expand-file-name rather than $abs_lisp so that Emacs does not ------------------------------------------------------------ revno: 114880 fixes bug: http://debbugs.gnu.org/15768 committer: Glenn Morris branch nick: trunk timestamp: Thu 2013-10-31 00:18:42 -0700 message: Fix setting of invocation-directory with --chdir and relative argv[0] * src/emacs.c (original_pwd): New char. (main): If using --chdir, store original_pwd. (init_cmdargs): When setting Vinvocation_directory based on a relative argv[0], use original_pwd if set. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2013-10-29 21:05:35 +0000 +++ src/ChangeLog 2013-10-31 07:18:42 +0000 @@ -1,3 +1,10 @@ +2013-10-31 Glenn Morris + + * emacs.c (original_pwd): New char. + (main): If using --chdir, store original_pwd. + (init_cmdargs): When setting Vinvocation_directory based on a + relative argv[0], use original_pwd if set. (Bug#15768) + 2013-10-29 Stefan Monnier * keyboard.c (command_loop_1): If command is nil, call `undefined'. === modified file 'src/emacs.c' --- src/emacs.c 2013-10-26 13:43:58 +0000 +++ src/emacs.c 2013-10-31 07:18:42 +0000 @@ -202,6 +202,9 @@ startup. */ int daemon_pipe[2]; +/* If we use --chdir, this records the original directory. */ +char *original_pwd; + /* Save argv and argc. */ char **initial_argv; int initial_argc; @@ -426,7 +429,10 @@ && NILP (Ffile_name_absolute_p (Vinvocation_directory))) /* Emacs was started with relative path, like ./emacs. Make it absolute. */ - Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil); + { + Lisp_Object odir = original_pwd ? build_string (original_pwd) : Qnil; + Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, odir); + } Vinstallation_directory = Qnil; @@ -786,12 +792,15 @@ } if (argmatch (argv, argc, "-chdir", "--chdir", 4, &ch_to_dir, &skip_args)) - if (chdir (ch_to_dir) == -1) - { - fprintf (stderr, "%s: Can't chdir to %s: %s\n", - argv[0], ch_to_dir, strerror (errno)); - exit (1); - } + { + original_pwd = get_current_dir_name (); + if (chdir (ch_to_dir) == -1) + { + fprintf (stderr, "%s: Can't chdir to %s: %s\n", + argv[0], ch_to_dir, strerror (errno)); + exit (1); + } + } dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0 || strcmp (argv[argc - 1], "bootstrap") == 0); ------------------------------------------------------------ revno: 114879 fixes bug: http://debbugs.gnu.org/15745 committer: Barry O'Reilly branch nick: trunk timestamp: Wed 2013-10-30 21:50:24 -0400 message: * semantic/idle.el (semantic-idle-symbol-highlight) (semantic-idle-symbol-highlight-face): Define face with defface and obsolete the replaced one defined with defvar. (Bug#15745) * pulse.el (pulse-momentary-highlight-overlay) (pulse-momentary-highlight-region): Fix typo in doc diff: === modified file 'lisp/cedet/ChangeLog' --- lisp/cedet/ChangeLog 2013-10-30 06:31:15 +0000 +++ lisp/cedet/ChangeLog 2013-10-31 01:50:24 +0000 @@ -1,3 +1,11 @@ +2013-10-28 Barry O'Reilly + + * semantic/idle.el (semantic-idle-symbol-highlight) + (semantic-idle-symbol-highlight-face): Define face with defface + and obsolete the replaced one defined with defvar. (Bug#15745) + * pulse.el (pulse-momentary-highlight-overlay) + (pulse-momentary-highlight-region): Fix typo in doc + 2013-10-30 Glenn Morris * semantic/grammar.el (semantic-grammar-mode-keywords-2) === modified file 'lisp/cedet/pulse.el' --- lisp/cedet/pulse.el 2013-01-01 09:11:05 +0000 +++ lisp/cedet/pulse.el 2013-10-31 01:50:24 +0000 @@ -180,7 +180,7 @@ (defun pulse-momentary-highlight-overlay (o &optional face) "Pulse the overlay O, unhighlighting before next command. -Optional argument FACE specifies the fact to do the highlighting." +Optional argument FACE specifies the face to do the highlighting." (overlay-put o 'original-face (overlay-get o 'face)) (add-to-list 'pulse-momentary-overlay o) (if (eq pulse-flag 'never) @@ -237,7 +237,7 @@ (defun pulse-momentary-highlight-region (start end &optional face) "Highlight between START and END, unhighlighting before next command. -Optional argument FACE specifies the fact to do the highlighting." +Optional argument FACE specifies the face to do the highlighting." (let ((o (make-overlay start end))) ;; Mark it for deletion (overlay-put o 'pulse-delete t) === modified file 'lisp/cedet/semantic/idle.el' --- lisp/cedet/semantic/idle.el 2013-06-19 20:29:09 +0000 +++ lisp/cedet/semantic/idle.el 2013-10-31 01:50:24 +0000 @@ -830,8 +830,14 @@ ;; of all uses of the symbol that is under the cursor. ;; ;; This is to mimic the Eclipse tool of a similar nature. -(defvar semantic-idle-symbol-highlight-face 'region +(defface semantic-idle-symbol-highlight + '((t :inherit region)) + "Face used for highlighting local symbols." + :group 'semantic-faces) +(defvar semantic-idle-symbol-highlight-face 'semantic-idle-symbol-highlight "Face used for highlighting local symbols.") +(make-obsolete-variable 'semantic-idle-symbol-highlight-face + "customize the face `semantic-idle-symbol-highlight' instead" "24.4" 'set) (defun semantic-idle-symbol-maybe-highlight (tag) "Perhaps add highlighting to the symbol represented by TAG. ------------------------------------------------------------ revno: 114878 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 20:40:46 -0400 message: * lisp/Makefile.in (autoloads): Fix thinko in previous diff: === modified file 'lisp/Makefile.in' --- lisp/Makefile.in 2013-10-30 20:27:35 +0000 +++ lisp/Makefile.in 2013-10-31 00:40:46 +0000 @@ -186,7 +186,7 @@ echo Directories: $$wins; \ $(emacs) -l autoload \ --eval '(setq autoload-builtin-package-versions t)' \ - --eval '(setq generated-autoload-file (expand-file-name (unmsys--file-name "$(lisp)/loaddefs.el")))' \ + --eval '(setq generated-autoload-file (expand-file-name "loaddefs.el"))' \ -f batch-update-autoloads $$wins # This is required by the bootstrap-emacs target in ../src/Makefile, so ------------------------------------------------------------ revno: 114877 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 16:27:35 -0400 message: * lisp/Makefile.in (autoloads): Do not use abs_lisp. This should stop recent weirdness, eg: http://lists.gnu.org/archive/html/emacs-diffs/2013-10/msg00381.html * lisp/emacs-lisp/autoload.el: Comment. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2013-10-30 20:03:07 +0000 +++ lisp/ChangeLog 2013-10-30 20:27:35 +0000 @@ -1,5 +1,7 @@ 2013-10-30 Glenn Morris + * Makefile.in (autoloads): Do not use abs_lisp. + * emacs-lisp/autoload.el (autoload-generate-file-autoloads): `newline' does not respect `standard-output', so use `princ'. === modified file 'lisp/Makefile.in' --- lisp/Makefile.in 2013-10-30 17:17:12 +0000 +++ lisp/Makefile.in 2013-10-30 20:27:35 +0000 @@ -178,13 +178,15 @@ $(emacs) -l finder --eval '(setq generated-finder-keywords-file (unmsys--file-name "$(abs_lisp)/finder-inf.el"))' -f finder-compile-keywords-make-dist $$wins # The chmod +w is to handle env var CVSREAD=1. +# Use expand-file-name rather than $abs_lisp so that Emacs does not +# get confused when it compares file-names for equality. autoloads: $(LOADDEFS) doit cd $(lisp) && chmod +w $(AUTOGEN_VCS) cd $(lisp) && $(setwins_almost); \ echo Directories: $$wins; \ $(emacs) -l autoload \ --eval '(setq autoload-builtin-package-versions t)' \ - --eval '(setq generated-autoload-file (unmsys--file-name "$(abs_lisp)/loaddefs.el"))' \ + --eval '(setq generated-autoload-file (expand-file-name (unmsys--file-name "$(lisp)/loaddefs.el")))' \ -f batch-update-autoloads $$wins # This is required by the bootstrap-emacs target in ../src/Makefile, so === modified file 'lisp/emacs-lisp/autoload.el' --- lisp/emacs-lisp/autoload.el 2013-10-30 20:03:07 +0000 +++ lisp/emacs-lisp/autoload.el 2013-10-30 20:27:35 +0000 @@ -528,6 +528,9 @@ (if (stringp generated-autoload-load-name) generated-autoload-load-name (autoload-file-load-name absfile))) + ;; FIXME? Comparing file-names for equality with just equal + ;; is fragile, eg if one has an automounter prefix and one + ;; does not, but both refer to the same physical file. (when (and outfile (not (if (memq system-type '(ms-dos windows-nt)) ------------------------------------------------------------ revno: 114876 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 16:03:07 -0400 message: * lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads): `newline' does not respect `standard-output', so use `princ'. Otherwise you can get \n inserted in the wrong buffer, eg http://lists.gnu.org/archive/html/emacs-diffs/2013-10/msg00379.html diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2013-10-30 18:35:19 +0000 +++ lisp/ChangeLog 2013-10-30 20:03:07 +0000 @@ -1,3 +1,8 @@ +2013-10-30 Glenn Morris + + * emacs-lisp/autoload.el (autoload-generate-file-autoloads): + `newline' does not respect `standard-output', so use `princ'. + 2013-10-30 Alp Aker Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761) === modified file 'lisp/emacs-lisp/autoload.el' --- lisp/emacs-lisp/autoload.el 2013-07-22 23:21:14 +0000 +++ lisp/emacs-lisp/autoload.el 2013-10-30 20:03:07 +0000 @@ -553,7 +553,7 @@ (princ `(push (purecopy ',(cons (intern package) version)) package--builtin-versions)) - (newline))))) + (princ "\n"))))) (goto-char (point-min)) (while (not (eobp)) ------------------------------------------------------------ revno: 114875 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 15:35:14 -0400 message: htmlfontify.el: remove duplicate Version: header diff: === modified file 'lisp/htmlfontify.el' --- lisp/htmlfontify.el 2013-10-30 16:29:36 +0000 +++ lisp/htmlfontify.el 2013-10-30 19:35:14 +0000 @@ -15,7 +15,6 @@ ;; Compatibility: Emacs23, Emacs22 ;; Incompatibility: Emacs19, Emacs20, Emacs21 ;; Last Updated: Thu 2009-11-19 01:31:21 +0000 -;; Version: 0.21 ;; This file is part of GNU Emacs. ------------------------------------------------------------ revno: 114874 fixes bug: http://debbugs.gnu.org/15761 committer: Alp Aker branch nick: trunk timestamp: Wed 2013-10-30 14:35:19 -0400 message: Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761) * buff-menu.el (Buffer-menu--unmark): New function. (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2013-10-30 17:17:12 +0000 +++ lisp/ChangeLog 2013-10-30 18:35:19 +0000 @@ -1,3 +1,9 @@ +2013-10-30 Alp Aker + + Ensure unmarking in buffer menu clears 'S' marks. (Bug#15761) + * buff-menu.el (Buffer-menu--unmark): New function. + (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it. + 2013-10-30 Glenn Morris * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el. === modified file 'lisp/buff-menu.el' --- lisp/buff-menu.el 2013-08-05 14:26:57 +0000 +++ lisp/buff-menu.el 2013-10-30 18:35:19 +0000 @@ -353,14 +353,22 @@ "Cancel all requested operations on buffer on this line and move down. Optional prefix arg means move up." (interactive "P") - (tabulated-list-set-col 0 " " t) + (Buffer-menu--unmark) (forward-line (if backup -1 1))) (defun Buffer-menu-backup-unmark () "Move up and cancel all requested operations on buffer on line above." (interactive) (forward-line -1) - (tabulated-list-set-col 0 " " t)) + (Buffer-menu--unmark)) + +(defun Buffer-menu--unmark () + (tabulated-list-set-col 0 " " t) + (let ((buf (Buffer-menu-buffer))) + (when buf + (if (buffer-modified-p buf) + (tabulated-list-set-col 2 "*" t) + (tabulated-list-set-col 2 " " t))))) (defun Buffer-menu-delete (&optional arg) "Mark the buffer on this Buffer Menu buffer line for deletion. ------------------------------------------------------------ revno: 114873 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 13:34:17 -0400 message: hfy-cmap.el: Remove duplicate Package: header diff: === modified file 'lisp/hfy-cmap.el' --- lisp/hfy-cmap.el 2013-01-01 09:11:05 +0000 +++ lisp/hfy-cmap.el 2013-10-30 17:34:17 +0000 @@ -13,7 +13,6 @@ ;; Description: fallback code for colour name -> rgb mapping ;; URL: http://rtfm.etla.org/emacs/htmlfontify/ ;; Last-Updated: Sat 2003-02-15 03:49:32 +0000 -;; Package: htmlfontify ;; This file is part of GNU Emacs. ------------------------------------------------------------ revno: 114872 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 13:17:12 -0400 message: * lisp/Makefile.in (AUTOGENEL): Add org/org-loaddefs.el. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2013-10-30 06:29:51 +0000 +++ lisp/ChangeLog 2013-10-30 17:17:12 +0000 @@ -1,5 +1,7 @@ 2013-10-30 Glenn Morris + * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el. + * emacs-lisp/package.el (lm-homepage): Declare. * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink): === modified file 'lisp/Makefile.in' --- lisp/Makefile.in 2013-10-30 06:21:46 +0000 +++ lisp/Makefile.in 2013-10-30 17:17:12 +0000 @@ -76,7 +76,8 @@ eshell/esh-groups.el \ cedet/semantic/loaddefs.el \ cedet/ede/loaddefs.el \ - cedet/srecode/loaddefs.el + cedet/srecode/loaddefs.el \ + org/org-loaddefs.el # Versioned files that are the value of someone's `generated-autoload-file'. # Note that update_loaddefs parses this. ------------------------------------------------------------ revno: 114871 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 09:45:51 -0700 message: Fix up previous admin/unidata clean rules diff: === modified file 'admin/unidata/Makefile.in' --- admin/unidata/Makefile.in 2013-10-30 07:15:23 +0000 +++ admin/unidata/Makefile.in 2013-10-30 16:45:51 +0000 @@ -58,7 +58,9 @@ fi rm -f charprop.el ${srcdir}/*.elc unidata.txt +bootstrap-clean: clean + distclean: clean -rm -f ./Makefile -bootstrap-clean maintainer-clean: distclean +maintainer-clean: distclean ------------------------------------------------------------ revno: 114870 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 09:29:36 -0700 message: Revert auto-commit loaddefs weirdness diff: === modified file 'lisp/dired.el' --- lisp/dired.el 2013-10-27 10:22:53 +0000 +++ lisp/dired.el 2013-10-30 16:29:36 +0000 @@ -3849,548 +3849,6 @@ ;;; 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-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 \\=\\ 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-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 === modified file 'lisp/emulation/tpu-edt.el' --- lisp/emulation/tpu-edt.el 2013-10-27 10:22:53 +0000 +++ lisp/emulation/tpu-edt.el 2013-10-30 16:29:36 +0000 @@ -2438,35 +2438,6 @@ (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") ;;; Generated autoloads from tpu-extras.el === modified file 'lisp/htmlfontify.el' --- lisp/htmlfontify.el 2013-10-30 16:21:41 +0000 +++ lisp/htmlfontify.el 2013-10-30 16:29:36 +0000 @@ -2411,29 +2411,9 @@ (load file 'NOERROR nil nil) )) -;;;### (autoloads nil "../../../../../../srv/data/home/r/rgm/emacs/bzr/trunk/lisp/hfy-cmap" -;;;;;; "hfy-cmap.el" "df4e418d0d8749ead9d32bb2c7a5bd56") +;;;### (autoloads nil "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") -;;; Generated autoloads from hfy-cmap.el - (autoload 'htmlfontify-load-rgb-file "hfy-cmap" "\ Load an X11 style rgb.txt FILE. Search `hfy-rgb-load-path' if FILE is not specified. === modified file 'lisp/ibuffer.el' --- lisp/ibuffer.el 2013-10-27 10:22:53 +0000 +++ lisp/ibuffer.el 2013-10-30 16:29:36 +0000 @@ -2628,377 +2628,6 @@ ;;; 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 === modified file 'lisp/mail/rmail.el' --- lisp/mail/rmail.el 2013-10-27 10:22:53 +0000 +++ lisp/mail/rmail.el 2013-10-30 16:29:36 +0000 @@ -4612,229 +4612,6 @@ ;;; 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 === modified file 'lisp/ps-print.el' --- lisp/ps-print.el 2013-10-30 02:45:53 +0000 +++ lisp/ps-print.el 2013-10-30 16:29:36 +0000 @@ -1,4 +1,3 @@ - ;;; ps-print.el --- print text from the buffer as PostScript ;; Copyright (C) 1993-2013 Free Software Foundation, Inc. @@ -6585,73 +6584,6 @@ ;; 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 ------------------------------------------------------------ revno: 114869 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 09:21:41 -0700 message: Fix weirdness caused by autoload generation... diff: === modified file 'lisp/htmlfontify.el' --- lisp/htmlfontify.el 2013-10-30 10:23:16 +0000 +++ lisp/htmlfontify.el 2013-10-30 16:21:41 +0000 @@ -3,9 +3,7 @@ ;; 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 ------------------------------------------------------------ revno: 114868 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 06:23:16 -0400 message: Auto-commit of loaddefs files. diff: === modified file 'lisp/htmlfontify.el' --- lisp/htmlfontify.el 2013-10-27 10:22:53 +0000 +++ lisp/htmlfontify.el 2013-10-30 10:23:16 +0000 @@ -4,6 +4,7 @@ ;; Emacs Lisp Archive Entry ;; Package: + htmlfontify ;; Filename: htmlfontify.el ;; Version: 0.21 ------------------------------------------------------------ revno: 114867 committer: Xue Fuqiao branch nick: trunk timestamp: Wed 2013-10-30 18:08:11 +0800 message: * doc/lispref/display.texi (Abstract Display): Improve indexing. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2013-10-29 14:49:10 +0000 +++ doc/lispref/ChangeLog 2013-10-30 10:08:11 +0000 @@ -1,3 +1,7 @@ +2013-10-30 Xue Fuqiao + + * display.texi (Abstract Display): Improve indexing. + 2013-10-29 Stefan Monnier * display.texi (Selective Display): Discourage the use of explicit === modified file 'doc/lispref/display.texi' --- doc/lispref/display.texi 2013-10-29 14:49:10 +0000 +++ doc/lispref/display.texi 2013-10-30 10:08:11 +0000 @@ -5469,6 +5469,8 @@ The header and footer strings. @item +@cindex node, ewoc +@c or "@cindex node, abstract display"? A doubly-linked chain of @dfn{nodes}, each of which contains: @itemize @@ -5493,6 +5495,8 @@ representation to another, and so forth. @xref{Abstract Display Functions}. +@cindex encapsulation, ewoc +@c or "@cindex encapsulation, abstract display"? A node @dfn{encapsulates} a data element much the way a variable holds a value. Normally, encapsulation occurs as a part of adding a node to the ewoc. You can retrieve the data element value and place a ------------------------------------------------------------ revno: 114866 committer: Glenn Morris branch nick: trunk timestamp: Wed 2013-10-30 00:15:23 -0700 message: Simplify admin/unidata Makefile rules * admin/unidata/unidata-gen.el (unidata-gen-files): Use pop. Also take the output directory as an argument. * admin/unidata/Makefile.in: Simplify now that unidata-gen-files takes the output directory as an argument (no need to cd, etc). (abs_srcdir, abs_builddir): Remove. (abs_top_builddir): Replace by top_builddir. (${DSTDIR}/charprop.el): No need to cd. Pass dest as argument. (${DSTDIR}/charprop.el, charprop.el): No need to pass unidata.txt as argument. diff: === modified file 'admin/ChangeLog' --- admin/ChangeLog 2013-10-30 06:40:15 +0000 +++ admin/ChangeLog 2013-10-30 07:15:23 +0000 @@ -1,5 +1,15 @@ 2013-10-30 Glenn Morris + * unidata/unidata-gen.el (unidata-gen-files): Use pop. + Also take the output directory as an argument. + * unidata/Makefile.in: Simplify now that unidata-gen-files takes + the output directory as an argument (no need to cd, etc). + (abs_srcdir, abs_builddir): Remove. + (abs_top_builddir): Replace by top_builddir. + (${DSTDIR}/charprop.el): No need to cd. Pass dest as argument. + (${DSTDIR}/charprop.el, charprop.el): + No need to pass unidata.txt as argument. + * unidata/unidata-gen.el (unidata--ensure-compiled): New function. (unidata-gen-table-name, unidata-gen-table-decomposition) (unidata-gen-files): Use unidata--ensure-compiled. === modified file 'admin/unidata/Makefile.in' --- admin/unidata/Makefile.in 2013-10-30 06:40:15 +0000 +++ admin/unidata/Makefile.in 2013-10-30 07:15:23 +0000 @@ -24,12 +24,10 @@ SHELL = @SHELL@ srcdir = @srcdir@ -abs_srcdir = @abs_srcdir@ -abs_builddir = @abs_builddir@ top_srcdir = @top_srcdir@ -abs_top_builddir = @abs_top_builddir@ +top_builddir = @top_builddir@ -EMACS = ${abs_top_builddir}/src/emacs +EMACS = ${top_builddir}/src/emacs DSTDIR = ${top_srcdir}/lisp/international emacs = "${EMACS}" -batch --no-site-file --no-site-lisp @@ -42,13 +40,13 @@ sed -e 's/\([^;]*\);\(.*\)/(#x\1 "\2")/' -e 's/;/" "/g' < ${srcdir}/UnicodeData.txt > $@ ${DSTDIR}/charprop.el: ${srcdir}/unidata-gen.elc unidata.txt - cd ${DSTDIR} && ${emacs} -l ${abs_srcdir}/unidata-gen \ - -f unidata-gen-files ${abs_srcdir} "${abs_builddir}/unidata.txt" + ${emacs} -L ${srcdir} -l unidata-gen -f unidata-gen-files \ + ${srcdir} "${DSTDIR}" ## Like the above, but generate in PWD rather than lisp/international. charprop.el: ${srcdir}/unidata-gen.elc unidata.txt - ${emacs} -L ${srcdir} -l unidata-gen \ - -f unidata-gen-files ${srcdir} "${abs_builddir}/unidata.txt" + ${emacs} -L ${srcdir} -l unidata-gen -f unidata-gen-files \ + ${srcdir} install: charprop.el cp charprop.el ${DSTDIR} === modified file 'admin/unidata/unidata-gen.el' --- admin/unidata/unidata-gen.el 2013-10-30 06:25:44 +0000 +++ admin/unidata/unidata-gen.el 2013-10-30 07:15:23 +0000 @@ -31,7 +31,7 @@ ;; FILES TO BE GENERATED ;; ;; The entry function `unidata-gen-files' generates these files in -;; the current directory. +;; in directory specified by its dest-dir argument. ;; ;; charprop.el ;; It contains a series of forms of this format: @@ -90,9 +90,9 @@ (defvar unidata-list nil) -;; Name of the directory containing files of Unicode Character -;; Database. +;; Name of the directory containing files of Unicode Character Database. +;; Dynamically bound in unidata-gen-files. (defvar unidata-dir nil) (defun unidata-setup-list (unidata-text-file) @@ -1182,12 +1182,17 @@ ;; The entry function. It generates files described in the header ;; comment of this file. -(defun unidata-gen-files (&optional data-dir unidata-text-file) +;; Write files (charprop.el, uni-*.el) to dest-dir (default PWD), +;; using as input files from data-dir, and +;; unidata-text-file (default "unidata.txt" in PWD). +(defun unidata-gen-files (&optional data-dir dest-dir unidata-text-file) (or data-dir (setq data-dir (pop command-line-args-left) - unidata-text-file (pop command-line-args-left))) + dest-dir (or (pop command-line-args-left) default-directory) + unidata-text-file (or (pop command-line-args-left) + (expand-file-name "unidata.txt")))) (let ((coding-system-for-write 'utf-8-unix) - (charprop-file "charprop.el") + (charprop-file (expand-file-name "charprop.el" dest-dir)) (unidata-dir data-dir)) (dolist (elt unidata-prop-alist) (let* ((prop (car elt)) @@ -1200,7 +1205,8 @@ (dolist (elt unidata-prop-alist) (let* ((prop (car elt)) (generator (unidata-prop-generator prop)) - (file (unidata-prop-file prop)) + (file (expand-file-name (unidata-prop-file prop) dest-dir)) + (basename (file-name-nondirectory file)) (docstring (unidata-prop-docstring prop)) (describer (unidata-prop-describer prop)) (default-value (unidata-prop-default prop)) @@ -1208,9 +1214,9 @@ table) ;; Filename in this comment line is extracted by sed in ;; Makefile. - (insert (format ";; FILE: %s\n" file)) + (insert (format ";; FILE: %s\n" basename)) (insert (format "(define-char-code-property '%S %S\n %S)\n" - prop file docstring)) + prop basename docstring)) (with-temp-buffer (message "Generating %s..." file) (when (file-exists-p file) @@ -1235,7 +1241,7 @@ ";; coding: utf-8\n" ";; no-byte-compile: t\n" ";; End:\n\n" - (format ";; %s ends here\n" file))) + (format ";; %s ends here\n" basename))) (write-file file) (message "Generating %s...done" file)))) (message "Writing %s..." charprop-file) @@ -1243,7 +1249,8 @@ ";; coding: utf-8\n" ";; no-byte-compile: t\n" ";; End:\n\n" - (format ";; %s ends here\n" charprop-file))))) + (format ";; %s ends here\n" + (file-name-nondirectory charprop-file))))))