removed some string_buffer

This commit is contained in:
ridiculousfish
2012-03-03 19:37:55 -08:00
parent 0a5680c3e8
commit a0bb2cdc6e
8 changed files with 31 additions and 200 deletions

8
kill.h
View File

@@ -12,13 +12,11 @@
/**
Replace the specified string in the killring
*/
void kill_replace( wchar_t *old, wchar_t *newv );
void kill_replace( const wcstring &old, const wcstring &newv );
/**
Add a string to the top of the killring
*/
void kill_add( wchar_t *str );
/** Add a string to the top of the killring */
void kill_add( const wcstring &str );
/**
Rotate the killring
*/