]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-tag-default): Copy text at point without properties.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 14 Nov 2002 07:18:12 +0000 (07:18 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 14 Nov 2002 07:18:12 +0000 (07:18 +0000)
lisp/ChangeLog
lisp/progmodes/etags.el

index 06a6e25dfb42db6008f3b8f559403186dfe587dd..1d3414d185cb1c8be4bc4b5b08e7f752324f5c11 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-14  Per Cederqvist  <ceder@lysator.liu.se>  (tiny change)
+
+       * progmodes/etags.el (find-tag-default): Copy text at point without
+       properties.
+
 2002-11-14  Kenichi Handa  <handa@m17n.org>
 
        * progmodes/cc-vars.el: Don't cc-bytecomp-defun char-table-p.
@@ -13,7 +18,7 @@
        When done, go back through those markers and fill each mangled
        paragraph with `fill-nobreak-invisible' let-bound to t.
        Don't use `display' property; insert "see" directly in buffer.
-       
+
 2002-11-13  Andre Spiegel  <spiegel@gnu.org>
 
        * vc-rcs.el (vc-rcs-registered): Improve comment.
index 8d988f45341166a01ed2bd7e7acedd8a8f436f8c..e3154ae4c4a1293f2e3ebeaddc539c837a40f887 100644 (file)
@@ -776,11 +776,12 @@ Assumes the tags table is the current buffer."
                               (save-excursion (end-of-line) (point))
                               t))
        (progn (goto-char (match-end 0))
-              (buffer-substring (point)
-                                (progn (forward-sexp -1)
-                                       (while (looking-at "\\s'")
-                                         (forward-char 1))
-                                       (point))))
+              (buffer-substring-no-properties
+                (point)
+                (progn (forward-sexp -1)
+                       (while (looking-at "\\s'")
+                         (forward-char 1))
+                       (point))))
       nil)))
 
 ;; Read a tag name from the minibuffer with defaulting and completion.