[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el
From: |
Mike Williams |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el |
Date: |
Tue, 09 Apr 2002 08:26:45 -0400 |
Index: emacs/lisp/textmodes/sgml-mode.el
diff -c emacs/lisp/textmodes/sgml-mode.el:1.80
emacs/lisp/textmodes/sgml-mode.el:1.81
*** emacs/lisp/textmodes/sgml-mode.el:1.80 Tue Apr 9 08:02:20 2002
--- emacs/lisp/textmodes/sgml-mode.el Tue Apr 9 08:26:44 2002
***************
*** 863,879 ****
START is the location of the start of the lexical element.
TYPE is one of `string', `comment', `tag', `cdata', or `text'.
! If non-nil LIMIT is a nearby position before point outside of any tag."
! ;; As usual, it's difficult to get a reliable answer without parsing the
! ;; whole buffer. We'll assume that a tag at indentation is outside of
! ;; any string or tag or comment or ...
(save-excursion
(let ((pos (point))
text-start state)
! (if limit (goto-char limit)
! ;; Hopefully this regexp will match something that's not inside
! ;; a tag and also hopefully the match is nearby.
! (re-search-backward "^[ \t]*<[_:[:alpha:]/%!?#]" nil 'move))
(with-syntax-table sgml-tag-syntax-table
(while (< (point) pos)
;; When entering this loop we're inside text.
--- 863,878 ----
START is the location of the start of the lexical element.
TYPE is one of `string', `comment', `tag', `cdata', or `text'.
! Optional argument LIMIT is the position to start parsing from.
! If nil, start from a preceding tag at indentation."
(save-excursion
(let ((pos (point))
text-start state)
! (if limit
! (goto-char limit)
! ;; Skip tags backwards until we find one at indentation
! (while (and (ignore-errors (sgml-parse-tag-backward))
! (not (sgml-at-indentation-p)))))
(with-syntax-table sgml-tag-syntax-table
(while (< (point) pos)
;; When entering this loop we're inside text.
***************
*** 966,975 ****
(buffer-substring-no-properties
(point) (progn (skip-syntax-forward "w_") (point))))
! (defsubst sgml-looking-back-at (s)
! (let ((start (- (point) (length s))))
(and (>= start (point-min))
! (equal s (buffer-substring-no-properties start (point))))))
(defun sgml-parse-tag-backward ()
"Parse an SGML tag backward, and return information about the tag.
--- 965,975 ----
(buffer-substring-no-properties
(point) (progn (skip-syntax-forward "w_") (point))))
! (defsubst sgml-looking-back-at (str)
! "Return t if the test before point matches STR."
! (let ((start (- (point) (length str))))
(and (>= start (point-min))
! (equal str (buffer-substring-no-properties start (point))))))
(defun sgml-parse-tag-backward ()
"Parse an SGML tag backward, and return information about the tag.
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/01
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/01
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Stefan Monnier, 2002/04/01
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/02
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/02
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/03
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/03
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/03
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Stefan Monnier, 2002/04/08
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/09
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el,
Mike Williams <=
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/11
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/14
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el, Mike Williams, 2002/04/16