comparison src/eval.c @ 615:7fe13e0f5dce v7.0175

updated for version 7.0175
author vimboss
date Thu, 22 Dec 2005 22:47:02 +0000
parents 0b1b7560c456
children 81fe2ccc1207
comparison
equal deleted inserted replaced
614:0b1b7560c456 615:7fe13e0f5dce
8457 n = cmd_exists(p + 1); 8457 n = cmd_exists(p + 1);
8458 } 8458 }
8459 else if (*p == '#') 8459 else if (*p == '#')
8460 { 8460 {
8461 #ifdef FEAT_AUTOCMD 8461 #ifdef FEAT_AUTOCMD
8462 n = au_exists(p + 1); 8462 if (p[1] == '#')
8463 n = autocmd_supported(p + 2);
8464 else
8465 n = au_exists(p + 1);
8463 #endif 8466 #endif
8464 } 8467 }
8465 else /* internal variable */ 8468 else /* internal variable */
8466 { 8469 {
8467 char_u *tofree; 8470 char_u *tofree;