From e543878f0f0896769bf239d9ccec0bd7e368d05e Mon Sep 17 00:00:00 2001 From: gamazeps Date: Tue, 23 Sep 2014 17:24:46 +0200 Subject: [PATCH] Replaced some TODO by FIXME closes #17478 --- src/etc/emacs/rust-mode-tests.el | 2 +- src/etc/kate/rust.xml | 2 +- src/etc/vim/syntax/rust.vim | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/etc/emacs/rust-mode-tests.el b/src/etc/emacs/rust-mode-tests.el index 85800a6965daf..1b6794e77f9f4 100644 --- a/src/etc/emacs/rust-mode-tests.el +++ b/src/etc/emacs/rust-mode-tests.el @@ -623,7 +623,7 @@ Convert the line-column information from that list into a buffer position value. (move-to-column column) (point)))) -;;; TODO: Maybe add an ERT explainer function (something that shows the +;;; FIXME: Maybe add an ERT explainer function (something that shows the ;;; surrounding code of the final point, not just the position). (defun rust-test-motion (source-code init-pos final-pos manip-func &optional &rest args) "Test that MANIP-FUNC moves point from INIT-POS to FINAL-POS. diff --git a/src/etc/kate/rust.xml b/src/etc/kate/rust.xml index 2b80c0ff39f5a..1c48b9d4f0c51 100644 --- a/src/etc/kate/rust.xml +++ b/src/etc/kate/rust.xml @@ -1,7 +1,7 @@ diff --git a/src/etc/vim/syntax/rust.vim b/src/etc/vim/syntax/rust.vim index 6ee610d9714db..93931246a0240 100644 --- a/src/etc/vim/syntax/rust.vim +++ b/src/etc/vim/syntax/rust.vim @@ -216,7 +216,7 @@ syn keyword rustTodo contained TODO FIXME XXX NB NOTE " Folding rules {{{2 " Trivial folding rules to begin with. -" TODO: use the AST to make really good folding +" FIXME: use the AST to make really good folding syn region rustFoldBraces start="{" end="}" transparent fold " Default highlighting {{{1