Mercurial > public > mercurial-scm > hg
diff mercurial/crecord.py @ 45017:a65c60f3280e
curses: back out d2227d4c9e6b (do not initialize LC_ALL to user settings)
The changeset was based on a25343d16ebe, which will be backed out, too.
Another fix for the problem will be resubmitted to the stable branch.
author | Manuel Jacob <me@manueljacob.de> |
---|---|
date | Sun, 28 Jun 2020 17:49:14 +0200 |
parents | 47a07bbf400a |
children | 4a503c1b664a |
line wrap: on
line diff
--- a/mercurial/crecord.py Thu Jun 25 11:22:34 2020 +0200 +++ b/mercurial/crecord.py Sun Jun 28 17:49:14 2020 +0200 @@ -10,6 +10,7 @@ from __future__ import absolute_import +import locale import os import re import signal @@ -565,6 +566,9 @@ """ ui.write(_(b'starting interactive selection\n')) chunkselector = curseschunkselector(headerlist, ui, operation) + # This is required for ncurses to display non-ASCII characters in + # default user locale encoding correctly. --immerrr + locale.setlocale(locale.LC_ALL, '') origsigtstp = sentinel = object() if util.safehasattr(signal, b'SIGTSTP'): origsigtstp = signal.getsignal(signal.SIGTSTP)