]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove superfluous installation instructions
authorStefan Kangas <stefan@marxist.se>
Thu, 21 Jul 2022 06:11:41 +0000 (08:11 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 21 Jul 2022 06:45:17 +0000 (08:45 +0200)
These functions are already autoloaded.
* lisp/mail/mspools.el:
* lisp/progmodes/opascal.el:
* lisp/textmodes/remember.el:
* lisp/woman.el: Remove superfluous installation instructions.

lisp/mail/mspools.el
lisp/progmodes/opascal.el
lisp/textmodes/remember.el
lisp/woman.el

index 2c3851f835d5448ebae900c41f9756a832eb6ce1..4dcde0d35456aaba06adef9e5c03179b3ab56243 100644 (file)
@@ -55,7 +55,6 @@
 ;; `mspools-using-vm' for details.
 
 ;;; Basic installation.
-;; (autoload 'mspools-show "mspools" "Show outstanding mail spools." t)
 ;; (setq mspools-folder-directory "~/MAIL/")
 ;;
 ;; If you use VM, mspools-folder-directory will default to vm-folder-directory
index 63399adf3ae0429793dc725a430af92c38a754af..5ed719b5a7898a48150018ebb232e0218c00b0d4 100644 (file)
@@ -29,7 +29,6 @@
 ;; .pas (and .dpr and .dpk) files.  Emacs, by default, will otherwise
 ;; enter Pascal mode.  For example:
 ;;
-;; (autoload 'opascal-mode "opascal")
 ;; (add-to-list 'auto-mode-alist
 ;;              '("\\.\\(pas\\|dpr\\|dpk\\)\\'" . opascal-mode))
 
index f7ebe04bcf5d77434121def3756a87711ac12006..9ec75174189b6bc3bd1ffaba2ffb8e4749888d64 100644 (file)
 ;; To map the primary remember function to the keystroke F8, do the
 ;; following.
 ;;
-;;   (autoload 'remember "remember" nil t)
-;;
 ;;   (define-key global-map [f8] 'remember)
 ;;
 ;; * Feedback
index c74faa8af48d9722c034869e651361e72749c453..d8743c7face54451c4fe47a3b72b4b490f1c08f1 100644 (file)
@@ -84,9 +84,7 @@
 ;; for temporary files outside the standard UN*X manual directory
 ;; structure.
 
-;; Or (3): Put the next two sexpr's in your .emacs:
-;; (autoload 'woman-dired-find-file "woman"
-;;   "In dired, run the WoMan man-page browser on this file." t)
+;; Or (3): Put this in your init file:
 ;; (add-hook 'dired-mode-hook
 ;;          (lambda ()
 ;;            (define-key dired-mode-map "W" 'woman-dired-find-file)))