- Feb 06, 2012
-
-
Matt Mackall authored
-
Wagner Bruna authored
-
Wagner Bruna authored
-
Wagner Bruna authored
-
- Feb 04, 2012
-
-
Wagner Bruna authored
-
Wagner Bruna authored
-
- Feb 03, 2012
-
-
Jim Hague authored
If fixws() is called on a zero-length string, malloc(0) is called and expected to return a pointer. Which it does on e.g. Linux. AIX returns NULL, which it is also legal, but the malloc() is then assumed to have failed. So ensure a valid pointer is always returned.
-
- Feb 06, 2012
-
-
Katsunori FUJIWARA authored
in 'cmdutil.forget()': for f in match.files(): if match.exact(f) or not explicitonly: .... is equal to: for f in match.files(): if True: .... because 'f' from 'match.files()' should 'match.exact(f)': - 'match.files()' returns 'self._files' - 'match.exact(f)' examines 'f in self._fmap', - 'self._fmap' of match is 'set(self._files)' then, 'explicitonly' wants to suppress warning messges, if it is true (= 'cmdutil.forget()' is invoked from 'subrepo.forget()'). so, current code should be fixed as: if not explicitonly: for f in match.files(): ....
-
- Feb 04, 2012
-
-
Jim Hague authored
"<command> `hg manifest`" overflows the puny 1024 byte command line length limit on AIX default shell ksh. Replace with "hg manifest | xargs <command>".
-
- Feb 05, 2012
-
-
Katsunori FUJIWARA authored
-
Katsunori FUJIWARA authored
some problematic encodings use backslash as part of multi-byte characters. util.pconvert() can treat strings in such encodings correctly, if win32mbcs is enabled, but str.replace() can not.
-
Katsunori FUJIWARA authored
some problematic encodings use backslash as part of multi-byte characters. util.pconvert() can treat strings in such encodings correctly, if win32mbcs is enabled, but str.replace() can not.
-
- Feb 03, 2012
-
-
Patrick Mezard authored
The current behaviour is to return the previous one in the series but at the same time the implementation is buggy because it does not take guarded patches in account.
-
Patrick Mezard authored
When all remaining patches are guarded, qnext used to return the last of the queue anyway.
-
Patrick Mezard authored
- The regular sed on OSX wants: -i "" not -i"" - GNU sed wants: -i"" not -i "" Backups are fine.
-
- Feb 01, 2012
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
Wagner Bruna authored
-
Matt Mackall authored
-
Pierre-Yves David authored
The following operation are denied if the mq changeset is public * qrefresh * qpop * qfold note: qimport was already denied.
-
- Jan 31, 2012
-
-
Wagner Bruna authored
-
Katsunori FUJIWARA authored
-
Alexander Sauta authored
-
- Jan 30, 2012
-
-
Wagner Bruna authored
-
- Feb 01, 2012
-
-
Matt Mackall authored
-
- Jan 31, 2012
-
-
Matt Mackall authored
-
- Jan 30, 2012
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
Currently we have the following return codes if nothing is found: commit incoming outgoing pull push intended 1 1 1 1 1 documented 1 1 1 0 1 actual 1 1 1 0 1 This makes pull agree with the rest of the table and makes it easy to detect "nothing was pulled" in scripts.
-
Matt Mackall authored
Treating bookmarks as a found change results in confusing documentation or output and is less useful for scripting.
-
Matt Mackall authored
-
Matt Mackall authored
-
Jens Bäckman authored
-
Alexander Sauta authored
-
Alexander Sauta authored
-
- Jan 29, 2012
-
-
Andrei Polushin authored
-
Andrei Polushin authored
-
- Jan 30, 2012
-
-
Pierre-Yves David authored
Before this commit only phase index where accepted
-
Pierre-Yves David authored
If mq.secret=false, mq should not touch phase
-