Mercurial > vim
changeset 1212:e085b0f7b036
updated for version 7.1b
author | vimboss |
---|---|
date | Thu, 10 May 2007 18:07:50 +0000 |
parents | fcab52418a9d |
children | 8906c10ecbb0 |
files | runtime/doc/usr_29.txt runtime/indent/ruby.vim src/gui_mac.c src/os_mac_conv.c src/workshop.c |
diffstat | 5 files changed, 18 insertions(+), 17 deletions(-) [+] |
line wrap: on
line diff
--- a/runtime/doc/usr_29.txt +++ b/runtime/doc/usr_29.txt @@ -1,4 +1,4 @@ -*usr_29.txt* For Vim version 7.1a. Last change: 2006 Apr 24 +*usr_29.txt* For Vim version 7.1b. Last change: 2006 Apr 24 VIM USER MANUAL - by Bram Moolenaar
--- a/runtime/indent/ruby.vim +++ b/runtime/indent/ruby.vim @@ -73,7 +73,7 @@ let s:end_start_regex = '^\s*\zs\<\%(mod let s:end_middle_regex = '\<\%(ensure\|else\|\%(\%(^\|;\)\s*\)\@<=\<rescue\>\|when\|elsif\)\>' " Regex that defines the end-match for the 'end' keyword. -let s:end_end_regex = '\%(^\|[^.:]\)\@<=\<end\>' +let s:end_end_regex = '\%(^\|[^.:@$]\)\@<=\<end\>' " Expression used for searchpair() call for finding match for 'end' keyword. let s:end_skip_expr = s:skip_expr . @@ -292,7 +292,7 @@ function GetRubyIndent() " If the previous line ended with an "end", match that "end"s beginning's " indent. - let col = s:Match(lnum, '\%(^\|[^.]\)\<end\>\s*\%(#.*\)\=$') + let col = s:Match(lnum, '\%(^\|[^.:@$]\)\<end\>\s*\%(#.*\)\=$') if col > 0 call cursor(lnum, col) if searchpair(s:end_start_regex, '', s:end_end_regex, 'bW',
--- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -1742,7 +1742,7 @@ gui_mac_doInGrowClick(Point where, Windo resizeLimitsPtr = GetRegionBounds(GetGrayRgn(), &resizeLimits); - /* Set the minimun size */ + /* Set the minimum size */ /* TODO: Should this come from Vim? */ resizeLimits.top = 100; resizeLimits.left = 100; @@ -1844,7 +1844,7 @@ gui_mac_doUpdateEvent(EventRecord *event */ GetPortVisibleRegion(GetWindowPort(whichWindow), updateRgn); # if 0 - /* Would be more appropriate to use the follwing but doesn't + /* Would be more appropriate to use the following but doesn't * seem to work under MacOS X (Dany) */ GetWindowRegion(whichWindow, kWindowUpdateRgn, updateRgn); @@ -1929,7 +1929,7 @@ gui_mac_doActivateEvent(EventRecord *eve gui_focus_change(FALSE); /* DON'T KNOW what the code below was doing found in the deactivate clause, but the - clause writting TRUE into in_focus (BUG) + clause writing TRUE into in_focus (BUG) */ #if 0 /* Removed by Dany as per above June 2001 */ @@ -1955,7 +1955,7 @@ gui_mac_doSuspendEvent(EventRecord *even */ /* May not need to change focus as the window will - * get an activate/desactivate event + * get an activate/deactivate event */ if (event->message & 1) /* Resume */ @@ -2748,7 +2748,7 @@ gui_mac_find_font(char_u *font_name) /* * ------------------------------------------------------------ - * GUI_MCH functionnality + * GUI_MCH functionality * ------------------------------------------------------------ */ @@ -3007,7 +3007,7 @@ gui_mch_init(void) display_errors(); /* Get background/foreground colors from system */ - /* TODO: do the approriate call to get real defaults */ + /* TODO: do the appropriate call to get real defaults */ gui.norm_pixel = 0x00000000; gui.back_pixel = 0x00FFFFFF; @@ -3036,7 +3036,7 @@ gui_mch_init(void) gui.scrollbar_height = gui.scrollbar_width = 15; /* cheat 1 overlap */ gui.border_offset = gui.border_width = 2; - /* If Quartz-style text antialiasing is available (see + /* If Quartz-style text anti aliasing is available (see gui_mch_draw_string() below), enable it for all font sizes. */ vim_setenv((char_u *)"QDTEXT_MINSIZE", (char_u *)"1"); @@ -3212,7 +3212,7 @@ gui_mch_set_shellsize( * Get the screen dimensions. * Allow 10 pixels for horizontal borders, 40 for vertical borders. * Is there no way to find out how wide the borders really are? - * TODO: Add live udate of those value on suspend/resume. + * TODO: Add live update of those value on suspend/resume. */ void gui_mch_get_screen_dimensions(int *screen_w, int *screen_h) @@ -5315,7 +5315,8 @@ gui_mch_dialog( short itemType; short useIcon; short width; - short totalButtonWidth = 0; /* the width of all button together incuding spacing */ + short totalButtonWidth = 0; /* the width of all button together + including spacing */ short widestButton = 0; short dfltButtonEdge = 20; /* gut feeling */ short dfltElementSpacing = 13; /* from IM:V.2-29 */ @@ -5959,7 +5960,7 @@ char_u *FullPathFromFSSpec_save(FSSpec f theCPB.dirInfo.ioFDirIndex = -1; /* theCPB.dirInfo.ioNamePtr = directoryName; Already done above. */ theCPB.dirInfo.ioVRefNum = file.vRefNum; - /* theCPB.dirInfo.ioDirID = irrevelant when ioFDirIndex = -1 */ + /* theCPB.dirInfo.ioDirID = irrelevant when ioFDirIndex = -1 */ theCPB.dirInfo.ioDrDirID = theCPB.dirInfo.ioDrParID; /* As ioFDirIndex = -1, get the info of ioDrDirID, */ @@ -5986,7 +5987,7 @@ char_u *FullPathFromFSSpec_save(FSSpec f theCPB.dirInfo.ioFDirIndex = -1; /* theCPB.dirInfo.ioNamePtr = directoryName; Already done above. */ theCPB.dirInfo.ioVRefNum = file.vRefNum; - /* theCPB.dirInfo.ioDirID = irrevelant when ioFDirIndex = -1 */ + /* theCPB.dirInfo.ioDirID = irrelevant when ioFDirIndex = -1 */ theCPB.dirInfo.ioDrDirID = theCPB.dirInfo.ioDrParID; /* As ioFDirIndex = -1, get the info of ioDrDirID, */ @@ -5998,7 +5999,7 @@ char_u *FullPathFromFSSpec_save(FSSpec f /* For MacOS Classic always add the volume name */ /* For MacOS X add the volume name preceded by "Volumes" */ - /* when we are not refering to the boot volume */ + /* when we are not referring to the boot volume */ #ifdef USE_UNIXFILENAME if (file.vRefNum != dfltVol_vRefNum) #endif
--- a/src/os_mac_conv.c +++ b/src/os_mac_conv.c @@ -74,7 +74,7 @@ mac_string_convert(ptr, len, lenp, fail_ fprintf(stderr, "Encoding failed\n"); /* When conversion failed, try excluding bytes from the end, helps when * there is an incomplete byte sequence. Only do up to 6 bytes to avoid - * looping a long time when there really is something unconvertable. */ + * looping a long time when there really is something unconvertible. */ while (cfstr == NULL && unconvlenp != NULL && len > 1 && *unconvlenp < 6) { --len;