Removed some non ascii chars from tex descriptions

This commit is contained in:
Holger Rapp 2011-07-27 14:10:27 +02:00
parent ecd2671541
commit 6c855d1280

View File

@ -2,7 +2,7 @@
###########################################################################
# TextMate Snippets #
###########################################################################
snippet def "#ifndef … #define … #endif"
snippet def "#ifndef ... #define ... #endif"
#ifndef ${1/([A-Za-z0-9_]+).*/$1/}
#define ${1:SYMBOL} ${2:value}
#endif
@ -71,7 +71,7 @@ do {
} while(${1:/* condition */});
endsnippet
snippet fprintf "fprintf "
snippet fprintf "fprintf ..."
fprintf(${1:stderr}, "${2:%s}\n"${2/([^%]|%%)*(%.)?.*/(?2:, :\);)/}$3${2/([^%]|%%)*(%.)?.*/(?2:\);)/}
endsnippet