aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2016-09-30 22:50:49 +0200
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2016-10-01 07:50:12 +0200
commitb3dbd589e1dc41d7bce18afd87dd6e59968286bb (patch)
tree73060444485726726cb62f07db44d209cfbc0c48 /ide
parent5b6dd304b9f88c86ebb066c1f173bb011d2b5f83 (diff)
Add command 'Set foo Append "bar"' for appending to an option (bug #5109).
For now, the only meaningful user is "Set Warnings". Example: Section Bar. Local Set Warnings Append "-foo". (* warning foo is now disabled *) End Bar. (* foo is now reenabled, assuming it was before entering the section *)
Diffstat (limited to 'ide')
-rw-r--r--ide/texmacspp.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/ide/texmacspp.ml b/ide/texmacspp.ml
index 9de1df9f1..680da7f54 100644
--- a/ide/texmacspp.ml
+++ b/ide/texmacspp.ml
@@ -709,6 +709,7 @@ let rec tmpp v loc =
| VernacSetStrategy _ as x -> xmlTODO loc x
| VernacUnsetOption _ as x -> xmlTODO loc x
| VernacSetOption _ as x -> xmlTODO loc x
+ | VernacSetAppendOption _ as x -> xmlTODO loc x
| VernacAddOption _ as x -> xmlTODO loc x
| VernacRemoveOption _ as x -> xmlTODO loc x
| VernacMemOption _ as x -> xmlTODO loc x