aboutsummaryrefslogtreecommitdiffhomepage
path: root/kill.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-03 21:46:06 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-03 21:46:06 -0800
commitdfba35aee8b01e04d3ee71a43dea478bb63d46cc (patch)
tree0814b3e4c15c575e7b49a2b76d4a5e137ff89dcc /kill.h
parent5ae77b43175d3ab588253c5872ce213aa6a6182d (diff)
Clean up the kill ring
Diffstat (limited to 'kill.h')
-rw-r--r--kill.h25
1 files changed, 10 insertions, 15 deletions
diff --git a/kill.h b/kill.h
index d135db3f..8cf4a3ed 100644
--- a/kill.h
+++ b/kill.h
@@ -17,25 +17,20 @@ void kill_replace( const wcstring &old, const wcstring &newv );
/** Add a string to the top of the killring */
void kill_add( const wcstring &str );
-/**
- Rotate the killring
-*/
+
+/** Rotate the killring */
const wchar_t *kill_yank_rotate();
-/**
- Paste from the killring
-*/
+
+/** Paste from the killring */
const wchar_t *kill_yank();
-/**
- Sanity check
-*/
+
+/** Sanity check */
void kill_sanity_check();
-/**
- Initialize the killring
-*/
+
+/** Initialize the killring */
void kill_init();
-/**
- Destroy the killring
-*/
+
+/** Destroy the killring */
void kill_destroy();
#endif