# HG changeset patch # User Thomas Arendsen Hein # Date 1122046050 -3600 # Node ID 84f9ac74cc30115499ba218c3419ff1b4197b736 # Parent 312b4a10d8628e796e4ded1b59bc1b384da4aad3 Added deprecation warnings if -t or --text is used for commits. diff -r 312b4a10d862 -r 84f9ac74cc30 mercurial/commands.py --- a/mercurial/commands.py Fri Jul 22 16:26:46 2005 +0100 +++ b/mercurial/commands.py Fri Jul 22 16:27:30 2005 +0100 @@ -460,6 +460,9 @@ def commit(ui, repo, *files, **opts): """commit the specified files or all outstanding changes""" + if opts['text']: + ui.warn("Warning: -t and --text is deprecated," + " please use -m or --message instead.\n") message = opts['message'] or opts['text'] logfile = opts['logfile'] if not message and logfile: @@ -791,6 +794,9 @@ def rawcommit(ui, repo, *flist, **rc): "raw commit interface" + if rc['text']: + ui.warn("Warning: -t and --text is deprecated," + " please use -m or --message instead.\n") message = rc['message'] or rc['text'] if not message and rc['logfile']: try: @@ -987,6 +993,9 @@ def tag(ui, repo, name, rev=None, **opts): """add a tag for the current tip or a given revision""" + if opts['text']: + ui.warn("Warning: -t and --text is deprecated," + " please use -m or --message instead.\n") if name == "tip": ui.warn("abort: 'tip' is a reserved name!\n") return -1