Mercurial > hg > xemacs-beta
comparison src/indent.c @ 5438:8d29f1c4bb98
Merge with 21.5 trunk.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Fri, 26 Nov 2010 06:43:36 +0100 |
parents | 308d34e9f07d c096d8051f89 |
children | 56144c8593a8 |
comparison
equal
deleted
inserted
replaced
5437:002cb5224e4f | 5438:8d29f1c4bb98 |
---|---|
408 int prev_col = 0; | 408 int prev_col = 0; |
409 Ichar c = 0; | 409 Ichar c = 0; |
410 | 410 |
411 buffer = wrap_buffer (buf); | 411 buffer = wrap_buffer (buf); |
412 if (tab_width <= 0 || tab_width > 1000) tab_width = 8; | 412 if (tab_width <= 0 || tab_width > 1000) tab_width = 8; |
413 CHECK_NATNUM (column); | 413 |
414 check_integer_range (column, Qzero, make_integer (EMACS_INT_MAX)); | |
414 goal = XINT (column); | 415 goal = XINT (column); |
415 | 416 |
416 retry: | 417 retry: |
417 pos = BUF_PT (buf); | 418 pos = BUF_PT (buf); |
418 end = BUF_ZV (buf); | 419 end = BUF_ZV (buf); |