diff options
| author | Eli Zaretskii | 2003-12-29 13:00:09 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2003-12-29 13:00:09 +0000 |
| commit | 65f3f600169a05911a71cac506df36e2d47b33dd (patch) | |
| tree | be9439423a00a3d61c85fc290c5e8832671056b7 | |
| parent | d42f90385b734af3711b1573f5bab1977b1627f2 (diff) | |
| download | emacs-65f3f600169a05911a71cac506df36e2d47b33dd.tar.gz emacs-65f3f600169a05911a71cac506df36e2d47b33dd.zip | |
(xml-get-attribute-or-nil): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/xml.el | 2 |
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 @@ | |||
| 1 | 2003-12-29 Eli Zaretskii <eliz@elta.co.il> | ||
| 2 | |||
| 3 | * xml.el (xml-get-attribute-or-nil): Doc fix. | ||
| 4 | |||
| 1 | 2003-12-29 Peter 'Luna' Runestig <peter@runestig.com> | 5 | 2003-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. |
| 109 | nil is returned if the attribute was not found. | 109 | Return `nil' if the attribute was not found. |
| 110 | 110 | ||
| 111 | See also `xml-get-attribute'." | 111 | See also `xml-get-attribute'." |
| 112 | (when (xml-node-attributes node) | 112 | (when (xml-node-attributes node) |