]> git.eshelyaron.com Git - emacs.git/commitdiff
Make quickurl.el obsolete (part 2/2)
authorStefan Kangas <stefan@marxist.se>
Fri, 15 Jul 2022 16:46:16 +0000 (18:46 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 28 Jul 2022 10:47:55 +0000 (12:47 +0200)
* lisp/obsolete/quickurl.el: Add "Obsolete-since" header.
* lisp/info.el (Info-file-list-for-emacs): Delete quickurl entry.
* doc/misc/autotype.texi (QuickURL): Delete section.

doc/misc/autotype.texi
etc/NEWS
lisp/info.el
lisp/obsolete/quickurl.el

index b005c9c34f765624acec23b80b86d080701e36a2..93c65692d0153e3de92c2274dfd36d0a2cb6d677 100644 (file)
@@ -92,7 +92,6 @@ completions and expansions of text at point.
 * Copyrights::             Inserting and updating copyrights.
 * Executables::            Turning interpreter scripts into executables.
 * Timestamps::             Updating dates and times in modified files.
-* QuickURL::               Inserting URLs based on text at point.
 * Tempo::                  Flexible template insertion.
 * Hippie Expand::          Expansion of text trying various methods.
 * Skeleton Language::      Making skeleton commands insert what you want.
@@ -478,31 +477,6 @@ The time stamp is written between the brackets or quotes:
 Time-stamp: <1998-02-18 10:20:51 gildea>
 @end example
 
-@node QuickURL
-@chapter QuickURL: Inserting URLs Based on Text at Point
-
-@vindex quickurl-url-file
-@findex quickurl
-@cindex URLs
-@kbd{M-x quickurl} can be used to insert a URL into a buffer based on
-the text at point.  The URLs are stored in an external file defined by
-the variable @code{quickurl-url-file} as a list of either cons cells of
-the form @code{(@var{key} . @var{URL})} or
-lists of the form @code{(@var{key} @var{URL} @var{comment})}.  These
-specify that @kbd{M-x quickurl} should insert @var{URL} if the word
-@var{key} is at point, for example:
-
-@example
-(("FSF"      "https://www.fsf.org/" "The Free Software Foundation")
- ("emacs"  . "https://www.gnu.org/software/emacs/"))
-@end example
-
-@findex quickurl-add-url
-@findex quickurl-list
-@kbd{M-x quickurl-add-url} can be used to add a new @var{key}/@var{URL}
-pair.  @kbd{M-x quickurl-list} provides interactive editing of the URL
-list.
-
 @node Tempo
 @chapter Tempo: Flexible Template Insertion
 
index 8ca2e51e2861bbe27b150015fe21665dd7f2b4d2..3941455efc940ff8f7783dc4171a272c6b82ae01 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -335,6 +335,10 @@ the major mode according to 'initial-major-mode', like at Emacs
 startup.  Previously, these functions ignored
 'initial-scratch-message' and left "*scratch*" in 'fundamental-mode'.
 
+---
+** The quickurl.el library is now obsolete.
+Use 'skeleton' or 'tempo' instead.
+
 ---
 ** The rlogin.el library and 'rsh' command are now obsolete.
 Use something like 'M-x shell RET ssh <host> RET' instead.
index fca4051224671ec266de278bf60e927242231a36..7c1b34ed64288396c4b681366608859154ea1a67 100644 (file)
@@ -4520,7 +4520,7 @@ Advanced commands:
     ("java" . "ccmode") ("idl" . "ccmode") ("pike" . "ccmode")
     ("skeleton" . "autotype") ("auto-insert" . "autotype")
     ("copyright" . "autotype") ("executable" . "autotype")
-    ("time-stamp" . "autotype") ("quickurl" . "autotype")
+    ("time-stamp" . "autotype")
     ("tempo" . "autotype") ("hippie-expand" . "autotype")
     ("cvs" . "pcl-cvs") ("ada" . "ada-mode") "calc"
     ("calcAlg" . "calc") ("calcDigit" . "calc") ("calcVar" . "calc")
index 61cae43a88a33303143de617630244ff434efdde..5ac10323d187e5380b0faea517f80c64073f7042 100644 (file)
@@ -5,6 +5,7 @@
 ;; Author: Dave Pearson <davep@davep.org>
 ;; Created: 1999-05-28
 ;; Keywords: hypermedia
+;; Obsolete-since: 29.1
 
 ;; This file is part of GNU Emacs.