aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2003-12-29 13:00:09 +0000
committerEli Zaretskii2003-12-29 13:00:09 +0000
commit65f3f600169a05911a71cac506df36e2d47b33dd (patch)
treebe9439423a00a3d61c85fc290c5e8832671056b7
parentd42f90385b734af3711b1573f5bab1977b1627f2 (diff)
downloademacs-65f3f600169a05911a71cac506df36e2d47b33dd.tar.gz
emacs-65f3f600169a05911a71cac506df36e2d47b33dd.zip
(xml-get-attribute-or-nil): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/xml.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2f1d4f8615a..fbc051c4573 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-12-29 Eli Zaretskii <eliz@elta.co.il>
2
3 * xml.el (xml-get-attribute-or-nil): Doc fix.
4
12003-12-29 Peter 'Luna' Runestig <peter@runestig.com> 52003-12-29 Peter 'Luna' Runestig <peter@runestig.com>
2 6
3 * net/zone-mode.el (zone-mode): Use write-file-functions, not 7 * net/zone-mode.el (zone-mode): Use write-file-functions, not
diff --git a/lisp/xml.el b/lisp/xml.el
index 72ffa43dcc9..dbd991f5583 100644
--- a/lisp/xml.el
+++ b/lisp/xml.el
@@ -106,7 +106,7 @@ CHILD-NAME should be a lower case symbol."
106 106
107(defun xml-get-attribute-or-nil (node attribute) 107(defun xml-get-attribute-or-nil (node attribute)
108 "Get from NODE the value of ATTRIBUTE. 108 "Get from NODE the value of ATTRIBUTE.
109nil is returned if the attribute was not found. 109Return `nil' if the attribute was not found.
110 110
111See also `xml-get-attribute'." 111See also `xml-get-attribute'."
112 (when (xml-node-attributes node) 112 (when (xml-node-attributes node)