[Python-checkins] cpython: "make tags": remove -t option of ctags

victor.stinner python-checkins at python.org
Wed Aug 17 07:53:04 EDT 2016


https://hg.python.org/cpython/rev/8455902b3b8e
changeset:   102724:8455902b3b8e
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Aug 17 13:51:52 2016 +0200
summary:
  "make tags": remove -t option of ctags

The option was kept for backward compatibility, but it was completly removed
recently. Patch written by Stéphane Wirtel.

files:
  Makefile.pre.in |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1563,8 +1563,8 @@
 # Create a tags file for vi
 tags::
 	cd $(srcdir); \
-	ctags -w -t Include/*.h; \
-	for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
+	ctags -w Include/*.h; \
+	for i in $(SRCDIRS); do ctags -w -a $$i/*.[ch]; \
 	done; \
 	sort -o tags tags
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list