aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-09-18 07:25:14 +0000
committerGlenn Morris2009-09-18 07:25:14 +0000
commit770af4b440a4baba4d4d90c35c3ce66ef4df56ce (patch)
tree92c3c2ce525784b91ed78bf3fe0346253f1164d1
parent07eae5c5e0769d5ade88330dede40231c88f2f56 (diff)
downloademacs-770af4b440a4baba4d4d90c35c3ce66ef4df56ce.tar.gz
emacs-770af4b440a4baba4d4d90c35c3ce66ef4df56ce.zip
(nxml-end-of-heading): Fix typo in condition-case handler.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/nxml/nxml-outln.el2
2 files changed, 3 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dab341513a3..ccf0221ad48 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -7,7 +7,8 @@
7 7
8 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program): 8 * net/eudc-bob.el (eudc-bob-pipe-object-to-external-program):
9 * net/eudc.el (eudc-expand-inline): 9 * net/eudc.el (eudc-expand-inline):
10 * net/newst-backend.el (newsticker--cache-read-feed): Fix typos in 10 * net/newst-backend.el (newsticker--cache-read-feed):
11 * nxml/nxml-outln.el (nxml-end-of-heading): Fix typos in
11 condition-case handlers. 12 condition-case handlers.
12 13
132009-09-18 Nick Roberts <nickrob@snap.net.nz> 142009-09-18 Nick Roberts <nickrob@snap.net.nz>
diff --git a/lisp/nxml/nxml-outln.el b/lisp/nxml/nxml-outln.el
index 4066376ae14..e517f4d9120 100644
--- a/lisp/nxml/nxml-outln.el
+++ b/lisp/nxml/nxml-outln.el
@@ -795,7 +795,7 @@ Do not move past the end of the line."
795 (let ((pos (condition-case err 795 (let ((pos (condition-case err
796 (and (nxml-scan-element-forward (point) t) 796 (and (nxml-scan-element-forward (point) t)
797 xmltok-start) 797 xmltok-start)
798 nil))) 798 (nxml-scan-error nil))))
799 (end-of-line) 799 (end-of-line)
800 (skip-chars-backward " \t") 800 (skip-chars-backward " \t")
801 (cond ((not pos) 801 (cond ((not pos)