1
1

* view.c (display): Fixed operator precedence with ?: in hex

display.
Этот коммит содержится в:
Roland Illig 2005-04-22 15:26:25 +00:00
родитель 94a7ad1a56
Коммит bbdebd492c
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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 */