aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2009-07-22 03:07:18 +0000
committerGlenn Morris2009-07-22 03:07:18 +0000
commit855b42a23dff7a633d728da3f8f562500472c89f (patch)
tree27f0b4007f322e6533e07f89ca20ec3491c7d589 /lisp
parentfbf370dc7ef9b1a95791a85e951dd2712af75fc0 (diff)
downloademacs-855b42a23dff7a633d728da3f8f562500472c89f.tar.gz
emacs-855b42a23dff7a633d728da3f8f562500472c89f.zip
Kevin Ryde <user42 at zip.com.au>
Hyperlink urls in docstrings with URL `...'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog14
-rw-r--r--lisp/net/newst-backend.el12
-rw-r--r--lisp/progmodes/idlw-shell.el2
-rw-r--r--lisp/progmodes/idlwave.el2
-rw-r--r--lisp/progmodes/vera-mode.el2
-rw-r--r--lisp/progmodes/verilog-mode.el4
-rw-r--r--lisp/progmodes/vhdl-mode.el2
-rw-r--r--lisp/textmodes/table.el10
8 files changed, 31 insertions, 17 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a0189b49460..68031d91a7b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,17 @@
12009-07-22 Kevin Ryde <user42@zip.com.au>
2
3 * net/newst-backend.el (newsticker--parse-atom-1.0)
4 (newsticker--parse-rss-0.91, newsticker--parse-rss-0.92)
5 (newsticker--parse-rss-1.0):
6 * progmodes/idlwave.el (idlwave-mode):
7 * progmodes/idlw-shell.el (idlwave-shell-mode):
8 * progmodes/vera-mode.el (vera-mode):
9 * progmodes/verilog-mode.el (verilog-auto-inst, verilog-auto):
10 * progmodes/vhdl-mode.el (vhdl-mode):
11 * textmodes/table.el (table-generate-source)
12 (table--warn-incompatibility):
13 Hyperlink urls in docstrings with URL `...'.
14
12009-07-22 Glenn Morris <rgm@gnu.org> 152009-07-22 Glenn Morris <rgm@gnu.org>
2 16
3 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el: 17 * emacs-lisp/advice.el, emacs-lisp/checkdoc.el:
diff --git a/lisp/net/newst-backend.el b/lisp/net/newst-backend.el
index 7bc6131cf1f..b421e7f331e 100644
--- a/lisp/net/newst-backend.el
+++ b/lisp/net/newst-backend.el
@@ -1130,7 +1130,7 @@ system time at which the data have been retrieved. TOPNODE
1130contains the feed data as returned by the xml parser. 1130contains the feed data as returned by the xml parser.
1131 1131
1132For the Atom 1.0 specification see 1132For the Atom 1.0 specification see
1133http://www.atompub.org/2005/08/17/draft-ietf-atompub-format-11.html" 1133URL `http://www.atompub.org/2005/08/17/draft-ietf-atompub-format-11.html'"
1134 (newsticker--debug-msg "Parsing Atom 1.0 feed %s" name) 1134 (newsticker--debug-msg "Parsing Atom 1.0 feed %s" name)
1135 (let (new-feed new-item) 1135 (let (new-feed new-item)
1136 (setq new-feed (newsticker--parse-generic-feed 1136 (setq new-feed (newsticker--parse-generic-feed
@@ -1184,8 +1184,8 @@ http://www.atompub.org/2005/08/17/draft-ietf-atompub-format-11.html"
1184Return value as well as arguments NAME, TIME, and TOPNODE are the 1184Return value as well as arguments NAME, TIME, and TOPNODE are the
1185same as in `newsticker--parse-atom-1.0'. 1185same as in `newsticker--parse-atom-1.0'.
1186 1186
1187For the RSS 0.91 specification see http://backend.userland.com/rss091 or 1187For the RSS 0.91 specification see URL `http://backend.userland.com/rss091'
1188http://my.netscape.com/publish/formats/rss-spec-0.91.html." 1188or URL `http://my.netscape.com/publish/formats/rss-spec-0.91.html'."
1189 (newsticker--debug-msg "Parsing RSS 0.91 feed %s" name) 1189 (newsticker--debug-msg "Parsing RSS 0.91 feed %s" name)
1190 (let* ((channelnode (car (xml-get-children topnode 'channel))) 1190 (let* ((channelnode (car (xml-get-children topnode 'channel)))
1191 (pub-date (newsticker--decode-rfc822-date 1191 (pub-date (newsticker--decode-rfc822-date
@@ -1238,7 +1238,7 @@ http://my.netscape.com/publish/formats/rss-spec-0.91.html."
1238Return value as well as arguments NAME, TIME, and TOPNODE are the 1238Return value as well as arguments NAME, TIME, and TOPNODE are the
1239same as in `newsticker--parse-atom-1.0'. 1239same as in `newsticker--parse-atom-1.0'.
1240 1240
1241For the RSS 0.92 specification see http://backend.userland.com/rss092." 1241For the RSS 0.92 specification see URL `http://backend.userland.com/rss092'."
1242 (newsticker--debug-msg "Parsing RSS 0.92 feed %s" name) 1242 (newsticker--debug-msg "Parsing RSS 0.92 feed %s" name)
1243 (let* ((channelnode (car (xml-get-children topnode 'channel))) 1243 (let* ((channelnode (car (xml-get-children topnode 'channel)))
1244 (pub-date (newsticker--decode-rfc822-date 1244 (pub-date (newsticker--decode-rfc822-date
@@ -1291,7 +1291,7 @@ For the RSS 0.92 specification see http://backend.userland.com/rss092."
1291Return value as well as arguments NAME, TIME, and TOPNODE are the 1291Return value as well as arguments NAME, TIME, and TOPNODE are the
1292same as in `newsticker--parse-atom-1.0'. 1292same as in `newsticker--parse-atom-1.0'.
1293 1293
1294For the RSS 1.0 specification see http://web.resource.org/rss/1.0/spec." 1294For the RSS 1.0 specification see URL `http://web.resource.org/rss/1.0/spec'."
1295 (newsticker--debug-msg "Parsing RSS 1.0 feed %s" name) 1295 (newsticker--debug-msg "Parsing RSS 1.0 feed %s" name)
1296 (let* ((channelnode (car (xml-get-children topnode 'channel))) 1296 (let* ((channelnode (car (xml-get-children topnode 'channel)))
1297 is-new-feed has-new-items) 1297 is-new-feed has-new-items)
@@ -1342,7 +1342,7 @@ For the RSS 1.0 specification see http://web.resource.org/rss/1.0/spec."
1342Return value as well as arguments NAME, TIME, and TOPNODE are the 1342Return value as well as arguments NAME, TIME, and TOPNODE are the
1343same as in `newsticker--parse-atom-1.0'. 1343same as in `newsticker--parse-atom-1.0'.
1344 1344
1345For the RSS 2.0 specification see http://blogs.law.harvard.edu/tech/rss." 1345For the RSS 2.0 specification see URL `http://blogs.law.harvard.edu/tech/rss'."
1346 (newsticker--debug-msg "Parsing RSS 2.0 feed %s" name) 1346 (newsticker--debug-msg "Parsing RSS 2.0 feed %s" name)
1347 (let* ((channelnode (car (xml-get-children topnode 'channel))) 1347 (let* ((channelnode (car (xml-get-children topnode 'channel)))
1348 is-new-feed has-new-items) 1348 is-new-feed has-new-items)
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el
index ed99c4f3d3a..a57fba4e822 100644
--- a/lisp/progmodes/idlw-shell.el
+++ b/lisp/progmodes/idlw-shell.el
@@ -941,7 +941,7 @@ IDL has currently stepped.")
941 Info documentation for this package is available. Use \\[idlwave-info] 941 Info documentation for this package is available. Use \\[idlwave-info]
942 to display (complain to your sysadmin if that does not work). 942 to display (complain to your sysadmin if that does not work).
943 For Postscript and HTML versions of the documentation, check IDLWAVE's 943 For Postscript and HTML versions of the documentation, check IDLWAVE's
944 homepage at `http://idlwave.org'. 944 homepage at URL `http://idlwave.org'.
945 IDLWAVE has customize support - see the group `idlwave'. 945 IDLWAVE has customize support - see the group `idlwave'.
946 946
9478. Keybindings 9478. Keybindings
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el
index b9ee458d2e0..266b46d0f3b 100644
--- a/lisp/progmodes/idlwave.el
+++ b/lisp/progmodes/idlwave.el
@@ -1883,7 +1883,7 @@ The main features of this mode are
1883 Info documentation for this package is available. Use 1883 Info documentation for this package is available. Use
1884 \\[idlwave-info] to display (complain to your sysadmin if that does 1884 \\[idlwave-info] to display (complain to your sysadmin if that does
1885 not work). For Postscript, PDF, and HTML versions of the 1885 not work). For Postscript, PDF, and HTML versions of the
1886 documentation, check IDLWAVE's homepage at `http://idlwave.org'. 1886 documentation, check IDLWAVE's homepage at URL `http://idlwave.org'.
1887 IDLWAVE has customize support - see the group `idlwave'. 1887 IDLWAVE has customize support - see the group `idlwave'.
1888 1888
188910.Keybindings 188910.Keybindings
diff --git a/lisp/progmodes/vera-mode.el b/lisp/progmodes/vera-mode.el
index 5340112d2c7..60e0d347250 100644
--- a/lisp/progmodes/vera-mode.el
+++ b/lisp/progmodes/vera-mode.el
@@ -291,7 +291,7 @@ Add a description of the problem and include a reproducible test case.
291Feel free to send questions and enhancement requests to <reto@gnu.org>. 291Feel free to send questions and enhancement requests to <reto@gnu.org>.
292 292
293Official distribution is at 293Official distribution is at
294<http://www.iis.ee.ethz.ch/~zimmi/emacs/vera-mode.html>. 294URL `http://www.iis.ee.ethz.ch/~zimmi/emacs/vera-mode.html'
295 295
296 296
297 The Vera Mode Maintainer 297 The Vera Mode Maintainer
diff --git a/lisp/progmodes/verilog-mode.el b/lisp/progmodes/verilog-mode.el
index c4b2f4a009e..febd0dfed8b 100644
--- a/lisp/progmodes/verilog-mode.el
+++ b/lisp/progmodes/verilog-mode.el
@@ -8812,7 +8812,7 @@ Exceptions:
8812 Unless you are instantiating a module multiple times, or the module is 8812 Unless you are instantiating a module multiple times, or the module is
8813 something trivial like an adder, DO NOT CHANGE SIGNAL NAMES ACROSS HIERARCHY. 8813 something trivial like an adder, DO NOT CHANGE SIGNAL NAMES ACROSS HIERARCHY.
8814 It just makes for unmaintainable code. To sanitize signal names, try 8814 It just makes for unmaintainable code. To sanitize signal names, try
8815 vrename from http://www.veripool.org. 8815 vrename from URL `http://www.veripool.org'.
8816 8816
8817 When you need to violate this suggestion there are two ways to list 8817 When you need to violate this suggestion there are two ways to list
8818 exceptions, placing them before the AUTOINST, or using templates. 8818 exceptions, placing them before the AUTOINST, or using templates.
@@ -10504,7 +10504,7 @@ Using \\[describe-function], see also:
10504 `verilog-read-includes' for reading `includes 10504 `verilog-read-includes' for reading `includes
10505 10505
10506If you have bugs with these autos, please file an issue at 10506If you have bugs with these autos, please file an issue at
10507http://www.veripool.org/verilog-mode or contact the AUTOAUTHOR 10507URL `http://www.veripool.org/verilog-mode' or contact the AUTOAUTHOR
10508Wilson Snyder (wsnyder@wsnyder.org)." 10508Wilson Snyder (wsnyder@wsnyder.org)."
10509 (interactive) 10509 (interactive)
10510 (unless noninteractive (message "Updating AUTOs...")) 10510 (unless noninteractive (message "Updating AUTOs..."))
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el
index fa5b6abe3f5..3cf930339e9 100644
--- a/lisp/progmodes/vhdl-mode.el
+++ b/lisp/progmodes/vhdl-mode.el
@@ -4648,7 +4648,7 @@ releases. You are kindly invited to participate in beta testing. Subscribe
4648to above mailing lists by sending an email to <reto@gnu.org>. 4648to above mailing lists by sending an email to <reto@gnu.org>.
4649 4649
4650VHDL Mode is officially distributed at 4650VHDL Mode is officially distributed at
4651http://opensource.ethz.ch/emacs/vhdl-mode.html 4651URL `http://opensource.ethz.ch/emacs/vhdl-mode.html'
4652where the latest version can be found. 4652where the latest version can be found.
4653 4653
4654 4654
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 873a6121b86..0038cd70e4b 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -3002,14 +3002,14 @@ untouched.
3002References used for this implementation: 3002References used for this implementation:
3003 3003
3004HTML: 3004HTML:
3005 http://www.w3.org 3005 URL `http://www.w3.org'
3006 3006
3007LaTeX: 3007LaTeX:
3008 http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Tables.html 3008 URL `http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Tables.html'
3009 3009
3010CALS (DocBook DTD): 3010CALS (DocBook DTD):
3011 http://www.oasis-open.org/html/a502.htm 3011 URL `http://www.oasis-open.org/html/a502.htm'
3012 http://www.oreilly.com/catalog/docbook/chapter/book/table.html#AEN114751 3012 URL `http://www.oreilly.com/catalog/docbook/chapter/book/table.html#AEN114751'
3013" 3013"
3014 (interactive 3014 (interactive
3015 (let* ((dummy (unless (table--probe-cell) (error "Table not found here"))) 3015 (let* ((dummy (unless (table--probe-cell) (error "Table not found here")))
@@ -5369,7 +5369,7 @@ aware of this.
5369*** Warning *** 5369*** Warning ***
5370 5370
5371Flyspell minor mode is known to be incompatible with this table 5371Flyspell minor mode is known to be incompatible with this table
5372package. The flyspell version 1.5d at http://kaolin.unice.fr/~serrano 5372package. The flyspell version 1.5d at URL `http://kaolin.unice.fr/~serrano'
5373works better than the previous versions however not fully compatible. 5373works better than the previous versions however not fully compatible.
5374 5374
5375" 5375"