summaryrefslogtreecommitdiff
path: root/src/editor.c
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-03-04 02:56:43 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-03-04 02:56:43 +0100
commit131be4c952fe939c210fd8bb649dae5e414d4fcc (patch)
tree8e60d7d1ea08ea2eea1c49f039483d86558c4c8d /src/editor.c
parent7babe4652a3b781c982fd96a0ad697db9b711aa1 (diff)
downloadratpoison-131be4c952fe939c210fd8bb649dae5e414d4fcc.zip
Kill useless comment.
Diffstat (limited to 'src/editor.c')
-rw-r--r--src/editor.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/editor.c b/src/editor.c
index 3820456..f3c82a6 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -475,7 +475,6 @@ editor_insert (rp_input_line *line, char *keysym_buf)
nbytes = strlen (keysym_buf);
if (line->length + nbytes > line->size - 1)
{
- /* FIXME: This seems like a very bad idea. */
line->size += nbytes + 100;
line->buffer = xrealloc (line->buffer, line->size);
}