summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-11-18 22:14:09 +0000
committerBram Moolenaar <Bram@vim.org>2022-11-18 22:14:09 +0000
commit88456cd3c49a3dd1fda17cf350daa9b8216b1aa6 (patch)
treebd241035e3d905b74667faca9f75e48c9c9c310d /src/getchar.c
parentd13166e788fcaef59ec65c20b46ca4be16625669 (diff)
patch 9.0.0904: various comment and indent flawsv9.0.0904
Problem: Various comment and indent flaws. Solution: Improve comments and indenting.
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 57e184b900..9ead903d0a 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -968,18 +968,18 @@ noremap_keys(void)
* Insert a string in position 'offset' in the typeahead buffer (for "@r"
* and ":normal" command, vgetorpeek() and check_termcode()).
*
- * If noremap is REMAP_YES, new string can be mapped again.
- * If noremap is REMAP_NONE, new string cannot be mapped again.
- * If noremap is REMAP_SKIP, first char of new string cannot be mapped again,
+ * If "noremap" is REMAP_YES, new string can be mapped again.
+ * If "noremap" is REMAP_NONE, new string cannot be mapped again.
+ * If "noremap" is REMAP_SKIP, first char of new string cannot be mapped again,
* but abbreviations are allowed.
- * If noremap is REMAP_SCRIPT, new string cannot be mapped again, except for
+ * If "noremap" is REMAP_SCRIPT, new string cannot be mapped again, except for
* script-local mappings.
- * If noremap is > 0, that many characters of the new string cannot be mapped.
+ * If "noremap" is > 0, that many characters of the new string cannot be mapped.
*
- * If nottyped is TRUE, the string does not return KeyTyped (don't use when
- * offset is non-zero!).
+ * If "nottyped" is TRUE, the string does not return KeyTyped (don't use when
+ * "offset" is non-zero!).
*
- * If silent is TRUE, cmd_silent is set when the characters are obtained.
+ * If "silent" is TRUE, cmd_silent is set when the characters are obtained.
*
* return FAIL for failure, OK otherwise
*/
@@ -1601,8 +1601,8 @@ before_blocking(void)
}
/*
- * updatescript() is called when a character can be written into the script file
- * or when we have waited some time for a character (c == 0)
+ * updatescript() is called when a character can be written into the script
+ * file or when we have waited some time for a character (c == 0)
*
* All the changed memfiles are synced if c == 0 or when the number of typed
* characters reaches 'updatecount' and 'updatecount' is non-zero.