* view.c (display): Fixed operator precedence with ?: in hex
display.
Этот коммит содержится в:
родитель
94a7ad1a56
Коммит
bbdebd492c
@ -5,6 +5,8 @@
|
||||
the value of the `upto' parameter.
|
||||
* view.c (view_move_forward2): Added more assertions. Rewrote
|
||||
condition for breaking out of the loop when upto == 0.
|
||||
* view.c (display): Fixed operator precedence with ?: in hex
|
||||
display.
|
||||
|
||||
2005-04-19 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
|
@ -937,7 +937,7 @@ display (WView *view)
|
||||
|
||||
/* Start of text column */
|
||||
int text_start = right - view->bytes_per_line
|
||||
- view_is_in_panel (view) ? 0 : 1;
|
||||
- (view_is_in_panel (view) ? 0 : 1);
|
||||
|
||||
for (; get_byte (view, from) != -1 && row < bottom; row++) {
|
||||
/* Print the hex offset */
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user