diff --git a/lib/RELEASE-NOTES b/lib/RELEASE-NOTES index 07f73e250a..385f1710ca 100644 --- a/lib/RELEASE-NOTES +++ b/lib/RELEASE-NOTES @@ -40,6 +40,11 @@ !!!The following LyX functions have been changed in 2.3: +* quote-insert + The function now has a second and third optional argument to specify + the side (left, right, auto) and quotation mark style (english, swedish, + german, polish, french, danish). + !!!The following LyX documents have been moved in 2.3: diff --git a/src/LyXAction.cpp b/src/LyXAction.cpp index 9fe5917850..642d774091 100644 --- a/src/LyXAction.cpp +++ b/src/LyXAction.cpp @@ -403,8 +403,17 @@ void LyXAction::init() * \li Action: Inserts quotes according to the type and quote-language preference. * \li Notion: Currently English, Swedish, German, Polish, French, Danish quotes are distinguished. - * \li Syntax: quote-insert [] + * \li Syntax: quote-insert [] [] [] * \li Params: : 'single' for single quotes, otherwise double quotes will be used. + * : 'left' for opening quotes, 'right' for closing quotes, otherwise + * the side will be guessed from the context. + *