comparison src/map.c @ 23229:b545334ae654 v8.2.2160

patch 8.2.2160: various typos Commit: https://github.com/vim/vim/commit/8e7d6223f630690b72b387eaed704bf01f3f29d2 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 18 19:49:56 2020 +0100 patch 8.2.2160: various typos Problem: Various typos. Solution: Fix spelling mistakes. (closes https://github.com/vim/vim/issues/7494)
author Bram Moolenaar <Bram@vim.org>
date Fri, 18 Dec 2020 20:00:06 +0100
parents 6d50182e7e24
children f8382c4e6551
comparison
equal deleted inserted replaced
23228:2c76cf162844 23229:b545334ae654
2219 rhs = check_map(keys_simplified, mode, exact, FALSE, abbr, 2219 rhs = check_map(keys_simplified, mode, exact, FALSE, abbr,
2220 &mp, &buffer_local); 2220 &mp, &buffer_local);
2221 if (did_simplify) 2221 if (did_simplify)
2222 { 2222 {
2223 // When the lhs is being simplified the not-simplified keys are 2223 // When the lhs is being simplified the not-simplified keys are
2224 // preferred for priting, like in do_map(). 2224 // preferred for printing, like in do_map().
2225 // The "rhs" and "buffer_local" values are not expected to change. 2225 // The "rhs" and "buffer_local" values are not expected to change.
2226 mp_simplified = mp; 2226 mp_simplified = mp;
2227 (void)replace_termcodes(keys, &alt_keys_buf, 2227 (void)replace_termcodes(keys, &alt_keys_buf,
2228 flags | REPTERM_NO_SIMPLIFY, NULL); 2228 flags | REPTERM_NO_SIMPLIFY, NULL);
2229 rhs = check_map(alt_keys_buf, mode, exact, FALSE, abbr, &mp, 2229 rhs = check_map(alt_keys_buf, mode, exact, FALSE, abbr, &mp,