emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/etags.el


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/etags.el
Date: Mon, 16 May 2005 07:26:55 -0400

Index: emacs/lisp/progmodes/etags.el
diff -c emacs/lisp/progmodes/etags.el:1.182 emacs/lisp/progmodes/etags.el:1.183
*** emacs/lisp/progmodes/etags.el:1.182 Fri Oct  8 17:32:33 2004
--- emacs/lisp/progmodes/etags.el       Mon May 16 11:26:54 2005
***************
*** 1283,1298 ****
  
  
        (if (looking-at "[0-9]")
!         (setq line (string-to-int (buffer-substring
!                                    (point)
!                                    (progn (skip-chars-forward "0-9")
!                                           (point))))))
        (search-forward ",")
        (if (looking-at "[0-9]")
!         (setq startpos (string-to-int (buffer-substring
!                                        (point)
!                                        (progn (skip-chars-forward "0-9")
!                                               (point)))))))
      ;; Leave point on the next line of the tags file.
      (forward-line 1)
      (cons tag-text (cons line startpos))))
--- 1283,1298 ----
  
  
        (if (looking-at "[0-9]")
!         (setq line (string-to-number (buffer-substring
!                                         (point)
!                                         (progn (skip-chars-forward "0-9")
!                                                (point))))))
        (search-forward ",")
        (if (looking-at "[0-9]")
!         (setq startpos (string-to-number (buffer-substring
!                                             (point)
!                                             (progn (skip-chars-forward "0-9")
!                                                    (point)))))))
      ;; Leave point on the next line of the tags file.
      (forward-line 1)
      (cons tag-text (cons line startpos))))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]