1
1

* view.c (struct WView): Moved hexedit_mode into the "Editor

modes" section.
Этот коммит содержится в:
Roland Illig 2005-04-14 11:08:25 +00:00
родитель 4dcd4b8da2
Коммит fe6cf255d2
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -14,6 +14,8 @@
Fixed one non-boolean operation in toggle_wrap_mode().
* view.c (struct WView): Renamed viewer_nroff_flag to
text_nroff_mode.
* view.c (struct WView): Moved hexedit_mode into the "Editor
modes" section.
2005-04-13 Roland Illig <roland.illig@gmx.de>

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

@ -126,6 +126,7 @@ struct WView {
/* Editor modes */
gboolean hex_mode; /* Hexview or Hexedit */
gboolean hexedit_mode; /* Hexedit */
gboolean hexview_in_text; /* Is the hexview cursor in the text area? */
gboolean text_nroff_mode; /* Nroff-style highlighting */
@ -137,7 +138,6 @@ struct WView {
offset_type start_display; /* First char displayed */
int start_col; /* First displayed column, negative */
offset_type edit_cursor; /* HexEdit cursor position in file */
int hexedit_mode:1; /* Hexadecimal editing mode flag */
int nib_shift:1; /* Set if editing the least significant nibble */
screen_dimen start_save; /* Line start shift between text and hex */
screen_dimen cursor_col; /* Cursor column */