mercurial/revlog.py
changeset 42988 f4caf910669e
parent 42987 36a0a1951d64
child 42990 a04b2c010d03
equal deleted inserted replaced
42987:36a0a1951d64 42988:f4caf910669e
   113 
   113 
   114 # Flag processors for REVIDX_ELLIPSIS.
   114 # Flag processors for REVIDX_ELLIPSIS.
   115 def ellipsisreadprocessor(rl, text):
   115 def ellipsisreadprocessor(rl, text):
   116     return text, False, {}
   116     return text, False, {}
   117 
   117 
   118 def ellipsiswriteprocessor(rl, text):
   118 def ellipsiswriteprocessor(rl, text, sidedata):
   119     return text, False
   119     return text, False
   120 
   120 
   121 def ellipsisrawprocessor(rl, text):
   121 def ellipsisrawprocessor(rl, text):
   122     return False
   122     return False
   123 
   123