diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-09-08 21:21:44 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-09-08 21:21:44 +0200 |
commit | e0c5507a7fd0e6412a1b0b629535d3154f7c9b0f (patch) | |
tree | e89dfd2597393279e35b4b781978e6f6a6756591 /src/gui | |
parent | ce17b2ea176dee183896f703f83bd1d025303a47 (diff) | |
download | weechat-e0c5507a7fd0e6412a1b0b629535d3154f7c9b0f.zip |
core: replace "clipboard" by "internal clipboard" in /help input and user's guide
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui-input.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/gui-input.c b/src/gui/gui-input.c index 2f373b373..88c439019 100644 --- a/src/gui/gui-input.c +++ b/src/gui/gui-input.c @@ -45,7 +45,7 @@ #include "gui-window.h" -char *gui_input_clipboard = NULL; /* clipboard content */ +char *gui_input_clipboard = NULL; /* internal clipboard content */ /* @@ -355,7 +355,7 @@ gui_input_move_to_buffer (struct t_gui_buffer *from_buffer, } /* - * Copies string into clipboard. + * Copies string into the internal clipboard. */ void @@ -377,7 +377,8 @@ gui_input_clipboard_copy (const char *buffer, int size) } /* - * Pastes clipboard at cursor pos in input line (default key: ctrl-Y). + * Pastes the internal clipboard at cursor pos in input line + * (default key: ctrl-Y). */ void |