aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-11-14 07:18:12 +0000
committerJuanma Barranquero2002-11-14 07:18:12 +0000
commit841e0fe4ae76d004684c6279f5774c401ef8184f (patch)
tree3c14da62ea7893f001ad9c49b930b36a19b138af
parent8d3c687c6eaff305a5e9491750034cebfd35bb72 (diff)
downloademacs-841e0fe4ae76d004684c6279f5774c401ef8184f.tar.gz
emacs-841e0fe4ae76d004684c6279f5774c401ef8184f.zip
(find-tag-default): Copy text at point without properties.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/progmodes/etags.el11
2 files changed, 12 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 06a6e25dfb4..1d3414d185c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-11-14 Per Cederqvist <ceder@lysator.liu.se> (tiny change)
2
3 * progmodes/etags.el (find-tag-default): Copy text at point without
4 properties.
5
12002-11-14 Kenichi Handa <handa@m17n.org> 62002-11-14 Kenichi Handa <handa@m17n.org>
2 7
3 * progmodes/cc-vars.el: Don't cc-bytecomp-defun char-table-p. 8 * progmodes/cc-vars.el: Don't cc-bytecomp-defun char-table-p.
@@ -13,7 +18,7 @@
13 When done, go back through those markers and fill each mangled 18 When done, go back through those markers and fill each mangled
14 paragraph with `fill-nobreak-invisible' let-bound to t. 19 paragraph with `fill-nobreak-invisible' let-bound to t.
15 Don't use `display' property; insert "see" directly in buffer. 20 Don't use `display' property; insert "see" directly in buffer.
16 21
172002-11-13 Andre Spiegel <spiegel@gnu.org> 222002-11-13 Andre Spiegel <spiegel@gnu.org>
18 23
19 * vc-rcs.el (vc-rcs-registered): Improve comment. 24 * vc-rcs.el (vc-rcs-registered): Improve comment.
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el
index 8d988f45341..e3154ae4c4a 100644
--- a/lisp/progmodes/etags.el
+++ b/lisp/progmodes/etags.el
@@ -776,11 +776,12 @@ Assumes the tags table is the current buffer."
776 (save-excursion (end-of-line) (point)) 776 (save-excursion (end-of-line) (point))
777 t)) 777 t))
778 (progn (goto-char (match-end 0)) 778 (progn (goto-char (match-end 0))
779 (buffer-substring (point) 779 (buffer-substring-no-properties
780 (progn (forward-sexp -1) 780 (point)
781 (while (looking-at "\\s'") 781 (progn (forward-sexp -1)
782 (forward-char 1)) 782 (while (looking-at "\\s'")
783 (point)))) 783 (forward-char 1))
784 (point))))
784 nil))) 785 nil)))
785 786
786;; Read a tag name from the minibuffer with defaulting and completion. 787;; Read a tag name from the minibuffer with defaulting and completion.