aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/textformat.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-12-10 16:26:08 +0100
committerGitHub <noreply@github.com>2023-12-10 16:26:08 +0100
commit529498685bbcd4783bc0e816d6247118c9ffb9a7 (patch)
tree4a907cfe9e6d7cd49d0dd3d60a70550b6598b391 /src/nvim/textformat.c
parentc675e51c2f3f8bf46457a3f6653af06a2a946f69 (diff)
parenta34cc1a44de75eff4c6b43f983dc983eb283119d (diff)
downloadrneovim-529498685bbcd4783bc0e816d6247118c9ffb9a7.tar.gz
rneovim-529498685bbcd4783bc0e816d6247118c9ffb9a7.tar.bz2
rneovim-529498685bbcd4783bc0e816d6247118c9ffb9a7.zip
Merge pull request #26458 from famiu/refactor/options/optionindex
Diffstat (limited to 'src/nvim/textformat.c')
-rw-r--r--src/nvim/textformat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/textformat.c b/src/nvim/textformat.c
index 8e52ad660b..3484d104fd 100644
--- a/src/nvim/textformat.c
+++ b/src/nvim/textformat.c
@@ -870,7 +870,7 @@ void op_formatexpr(oparg_T *oap)
/// @param c character to be inserted
int fex_format(linenr_T lnum, long count, int c)
{
- int use_sandbox = was_set_insecurely(curwin, "formatexpr", OPT_LOCAL);
+ int use_sandbox = was_set_insecurely(curwin, kOptFormatexpr, OPT_LOCAL);
const sctx_T save_sctx = current_sctx;
// Set v:lnum to the first line number and v:count to the number of lines.