summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-03-04 02:51:25 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-03-04 02:51:25 +0100
commit05525bcff126d698d3e9f18cb4df97c6fe528237 (patch)
tree2ccd828ac018984e4e0273294c095c125e044d0e /src
parent710696420f50234716579c98367696a43a211482 (diff)
downloadratpoison-05525bcff126d698d3e9f18cb4df97c6fe528237.zip
Small coding standards fix.
Diffstat (limited to 'src')
-rw-r--r--src/editor.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/editor.c b/src/editor.c
index c0d6918..3820456 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -529,10 +529,11 @@ static edit_status
editor_paste_selection (rp_input_line *line)
{
char *text;
- text = get_selection();
+
+ text = get_selection ();
if (text)
{
- editor_insert(line, text);
+ editor_insert (line, text);
free (text);
return EDIT_INSERT;
}