Merge branch '1977_mcedit_type_accuracy' into 4.8.1-stable
commit5a64ae16d825cce19d4377232760a8fa65d4fbb0
authorAndrew Borodin <aborodin@vmail.ru>
Wed, 5 Sep 2012 12:16:45 +0000 (5 16:16 +0400)
committerAndrew Borodin <aborodin@vmail.ru>
Wed, 5 Sep 2012 12:16:45 +0000 (5 16:16 +0400)
tree62a1be1d712b913ad1b5a1642f20699821221fa4
parent0a42d171adbf7552e7b79790227d0dff9d312ace
parent21b33f446c856a86d5439b8cb38598376bf9aaba
Merge branch '1977_mcedit_type_accuracy' into 4.8.1-stable

* 1977_mcedit_type_accuracy:
  Avoid compiler errors about comparsion signed and unsigned variables
  (is_aligned_on_a_tab): return gboolean instead of int. Minor optimization.
  Use off_t instead of long for all variables related to position in file:
  Use long for line numbers and columns.
  (edit_drop_hotkey_menu): return gboolean instead of int.
  (edit_translate_keys): return gboolean instead of int.
  (edit_find_word_start): return gboolean instead of int.
  (edit_save_cmd): return gboolean instead of int.
  (edit_copy_to_X_buf_cmd): return gboolean instead of int.
  (edit_save_block): return gboolean instead of int.
  (editcmd_dialog_raw_key_query): take gboolean instead of int.
  (edit_mark_cmd): take gboolean instead of int.
  WEdit::caches_valid: change int to gboolean.
  (is_in_indent): refactoring, return gboolean instead of int.
  Ticket #1977: type accuracy of WEdit members and mceditor functions.