macros.h
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8. /*
  9.  * macros.h: macro definitions for often used code
  10.  */
  11. /*
  12.  * pchar(lp, c) - put character 'c' at position 'lp'
  13.  */
  14. #define pchar(lp, c) (*(ml_get_buf(curbuf, (lp).lnum, TRUE) + (lp).col) = (c))
  15. /*
  16.  * Position comparisons
  17.  */
  18. #define lt(a, b) (((a).lnum != (b).lnum) 
  19.    ? ((a).lnum < (b).lnum) : ((a).col < (b).col))
  20. #define ltoreq(a, b) (((a).lnum != (b).lnum) 
  21.    ? ((a).lnum < (b).lnum) : ((a).col <= (b).col))
  22. #define equal(a, b) (((a).lnum == (b).lnum) && ((a).col == (b).col))
  23. /*
  24.  * lineempty() - return TRUE if the line is empty
  25.  */
  26. #define lineempty(p) (*ml_get(p) == NUL)
  27. /*
  28.  * bufempty() - return TRUE if the current buffer is empty
  29.  */
  30. #define bufempty() (curbuf->b_ml.ml_line_count == 1 && *ml_get((linenr_t)1) == NUL)
  31. /*
  32.  * On some systems toupper()/tolower() only work on lower/uppercase characters
  33.  */
  34. #ifdef WIN32
  35. #  define TO_UPPER(c) toupper_tab[(c) & 255]
  36. #  define TO_LOWER(c) tolower_tab[(c) & 255]
  37. #else
  38. # ifdef BROKEN_TOUPPER
  39. #  define TO_UPPER(c) (islower(c) ? toupper(c) : (c))
  40. #  define TO_LOWER(c) (isupper(c) ? tolower(c) : (c))
  41. # else
  42. #  define TO_UPPER toupper
  43. #  define TO_LOWER tolower
  44. # endif
  45. #endif
  46. /* macro version of chartab(), only works with 0-255 values */
  47. #define CHARSIZE(c) (chartab[c] & CHAR_MASK);
  48. #ifdef HAVE_LANGMAP
  49. /*
  50.  * Adjust chars in a language according to 'langmap' option.
  51.  * NOTE that there is NO overhead if 'langmap' is not set; but even
  52.  * when set we only have to do 2 ifs and an array lookup.
  53.  * Don't apply 'langmap' if the character comes from the Stuff buffer.
  54.  * The do-while is just to ignore a ';' after the macro.
  55.  */
  56. # define LANGMAP_ADJUST(c, condition) do { 
  57. if (*p_langmap && (condition) && !KeyStuffed && (c) < 256) 
  58.     c = langmap_mapchar[c]; 
  59.     } while (0)
  60. #endif
  61. /*
  62.  * vim_isbreak() is used very often if 'linebreak' is set, use a macro to make
  63.  * it work fast.
  64.  */
  65. #define vim_isbreak(c) (breakat_flags[(char_u)(c)])