Skip to content

Commit

Permalink
Remove the WRITESP, WRITESPLN macros
Browse files Browse the repository at this point in the history
  • Loading branch information
nickie committed Oct 10, 2015
1 parent 730702d commit e0c52dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions snippets/pzc.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ snippet tde
} ${2:foo};
# Read-write
snippet wr
WRITE(${1});
snippet wrln
WRITELN(${1});
snippet wrsp
WRITESPLN(${1});
snippet rint
READ_INT();
snippet rreal
Expand Down
2 changes: 1 addition & 1 deletion syntax/pzc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ syn keyword pazcalStatement extern PRIVATE const
syn keyword pazcalStatement PROGRAM PROC FUNC nextgroup=pazcalFunction skipwhite
syn keyword pazcalType int bool char REAL enum struct union unsigned long
syn match pazcalFunction "\%([^[:cntrl:][:space:][:punct:][:digit:]]\|_\)\%([^[:cntrl:][:punct:][:space:]]\|_\)*" display contained
syn keyword pazcalFunction WRITE WRITELN WRITESP WRITESPLN READ_INT READ_REAL SKIP_LINE FORM NEW DELETE
syn keyword pazcalFunction WRITE WRITELN READ_INT READ_REAL SKIP_LINE FORM NEW DELETE
syn keyword pazcalMFunction abs pow sqrt log exp floor ceil MOD MIN MAX
syn keyword pazcalRepeat FOR while do
syn keyword pazcalRepeat TO DOWNTO STEP
Expand Down

0 comments on commit e0c52dc

Please sign in to comment.