diff lisp/packages/auto-autoloads.el @ 173:8eaf7971accc r20-3b13

Import from CVS: tag r20-3b13
author cvs
date Mon, 13 Aug 2007 09:49:09 +0200
parents 5a88923fcbfe
children 6075d714658b
line wrap: on
line diff
--- a/lisp/packages/auto-autoloads.el	Mon Aug 13 09:47:55 2007 +0200
+++ b/lisp/packages/auto-autoloads.el	Mon Aug 13 09:49:09 2007 +0200
@@ -48,7 +48,7 @@
 (defvar add-log-lisp-like-modes '(emacs-lisp-mode lisp-mode scheme-mode lisp-interaction-mode) "\
 *Modes that look like Lisp to `add-log-current-defun'.")
 
-(defvar add-log-c-like-modes '(c-mode c++-mode c++-c-mode objc-mode) "\
+(defvar add-log-c-like-modes '(c-mode c++-mode c++-c-mode objc-mode java-mode) "\
 *Modes that look like C to `add-log-current-defun'.")
 
 (defvar add-log-tex-like-modes '(TeX-mode plain-TeX-mode LaTeX-mode plain-tex-mode latex-mode) "\
@@ -1227,7 +1227,7 @@
 
 ;;;***
 
-;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-get-doc hyper-apropos-read-variable-symbol hyper-describe-function hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el")
+;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-read-variable-symbol hyper-describe-function hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "packages/hyper-apropos.el")
 
 (autoload 'hyper-apropos "hyper-apropos" "\
 Display lists of functions and variables matching REGEXP
@@ -1258,9 +1258,6 @@
 
 (define-obsolete-function-alias 'hypropos-read-variable-symbol 'hyper-apropos-read-variable-symbol)
 
-(autoload 'hyper-apropos-get-doc "hyper-apropos" "\
-Toggle display of documentation for the symbol on the current line." t nil)
-
 (define-obsolete-function-alias 'hypropos-get-doc 'hyper-apropos-get-doc)
 
 (autoload 'hyper-set-variable "hyper-apropos" nil t nil)
@@ -1288,7 +1285,10 @@
 
 ;;;***
 
-;;;### (autoloads (dired-do-igrep-find dired-do-igrep igrep-find-define igrep-find igrep-define igrep) "igrep" "packages/igrep.el")
+;;;### (autoloads (dired-do-igrep-find dired-do-igrep igrep-find-define igrep-find igrep-define igrep igrep-insinuate) "igrep" "packages/igrep.el")
+
+(autoload 'igrep-insinuate "igrep" "\
+Replace the `grep' functions with `igrep'." nil nil)
 
 (autoload 'igrep "igrep" "\
 *Run `grep` PROGRAM to match EXPRESSION in FILES.
@@ -1337,14 +1337,10 @@
 *Run `grep` PROGRAM to match EXPRESSION (with optional OPTIONS)
 on the marked (or next prefix ARG) files." t nil)
 
-(defalias 'dired-do-grep 'dired-do-igrep)
-
 (autoload 'dired-do-igrep-find "igrep" "\
 *Run `grep` PROGRAM to match EXPRESSION (with optional OPTIONS)
 on the marked (or next prefix ARG) directories." t nil)
 
-(defalias 'dired-do-grep-find 'dired-do-igrep-find)
-
 ;;;***
 
 ;;;### (autoloads (Info-elisp-ref Info-emacs-key Info-goto-emacs-key-command-node Info-goto-emacs-command-node Info-emacs-command Info-search Info-visit-file Info-goto-node Info-query info) "info" "packages/info.el")
@@ -1778,23 +1774,27 @@
 
 ;;;***
 
-;;;### (autoloads (pending-delete pending-delete-off pending-delete-on) "pending-del" "packages/pending-del.el")
-
-(autoload 'pending-delete-on "pending-del" "\
-Turn on pending delete.
-When it is ON, typed text replaces the selection if the selection is active.
-When it is OFF, typed text is just inserted at point." t nil)
-
-(autoload 'pending-delete-off "pending-del" "\
-Turn off pending delete.
-When it is ON, typed text replaces the selection if the selection is active.
-When it is OFF, typed text is just inserted at point." t nil)
-
-(autoload 'pending-delete "pending-del" "\
-Toggle automatic deletion of the selected region.
+;;;### (autoloads (pending-delete-mode turn-off-pending-delete turn-on-pending-delete) "pending-del" "packages/pending-del.el")
+
+(autoload 'turn-on-pending-delete "pending-del" "\
+Turn on pending delete minor mode unconditionally." t nil)
+
+(autoload 'turn-off-pending-delete "pending-del" "\
+Turn off pending delete minor mode unconditionally." t nil)
+
+(autoload 'pending-delete-mode "pending-del" "\
+Toggle Pending Delete minor mode.
+When the pending delete is on, typed text replaces the selection.
 With a positive argument, turns it on.
-With a non-positive argument, turns it off.
-When active, typed text replaces the selection." t nil)
+With a non-positive argument, turns it off." t nil)
+
+(define-obsolete-function-alias 'pending-delete-on 'turn-on-pending-delete)
+
+(define-obsolete-function-alias 'pending-delete-off 'turn-off-pending-delete)
+
+(define-compatible-function-alias 'delete-selection-mode 'pending-delete-mode)
+
+(defalias 'pending-delete 'pending-delete-mode)
 
 ;;;***