mercurial/ui.py
changeset 30641 16b5df5792a8
parent 30637 344e68882cd3
child 30814 b96c57c1f860
equal deleted inserted replaced
30640:7a3e67bfa417 30641:16b5df5792a8
  1084                 self.write_err(''.join(output))
  1084                 self.write_err(''.join(output))
  1085         return self.tracebackflag or force
  1085         return self.tracebackflag or force
  1086 
  1086 
  1087     def geteditor(self):
  1087     def geteditor(self):
  1088         '''return editor to use'''
  1088         '''return editor to use'''
  1089         if sys.platform == 'plan9':
  1089         if pycompat.sysplatform == 'plan9':
  1090             # vi is the MIPS instruction simulator on Plan 9. We
  1090             # vi is the MIPS instruction simulator on Plan 9. We
  1091             # instead default to E to plumb commit messages to
  1091             # instead default to E to plumb commit messages to
  1092             # avoid confusion.
  1092             # avoid confusion.
  1093             editor = 'E'
  1093             editor = 'E'
  1094         else:
  1094         else: