aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorChong Yidong2009-10-18 22:25:36 +0000
committerChong Yidong2009-10-18 22:25:36 +0000
commit7346a407f45d7eaff6ef8742bc054b7e3a9c17c0 (patch)
tree237a38b704a111b12a1033d7716fbf024838ac8e /lisp/textmodes
parent6873acca85ebfa0e5b1396250f8c4fd1b577404d (diff)
downloademacs-7346a407f45d7eaff6ef8742bc054b7e3a9c17c0.tar.gz
emacs-7346a407f45d7eaff6ef8742bc054b7e3a9c17c0.zip
* minibuffer.el (read-file-name): Check for repeat before putting
a default argument in file-name-history (Bug#4657). * emacs-lisp/lisp-mode.el (preceding-sexp): Recognize hash table read syntax (Bug#4737). * textmodes/sgml-mode.el (sgml-delete-tag): Use sgml-looking-back-at.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/sgml-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index d009e77adb2..ff3054423b9 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -909,7 +909,7 @@ With prefix argument ARG, repeat this ARG times."
909 (kill-sexp 1)) 909 (kill-sexp 1))
910 (setq open (point)) 910 (setq open (point))
911 (when (and (sgml-skip-tag-forward 1) 911 (when (and (sgml-skip-tag-forward 1)
912 (not (looking-back "/>"))) 912 (not (sgml-looking-back-at "/>")))
913 (kill-sexp -1))) 913 (kill-sexp -1)))
914 ;; Delete any resulting empty line. If we didn't kill-sexp, 914 ;; Delete any resulting empty line. If we didn't kill-sexp,
915 ;; this *should* do nothing, because we're right after the tag. 915 ;; this *should* do nothing, because we're right after the tag.