From f3d5390d8bcd5f8a48a3e328443cdef2ec68b4cf Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Sat, 18 Sep 2010 15:16:04 +0000 Subject: [PATCH] Conversion for tabular-feature. I believe this completes the LFUN conversions, at least if RELEASE_NOTES is complete in this respect. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35436 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/scripts/prefs2prefs_lfuns.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/scripts/prefs2prefs_lfuns.py b/lib/scripts/prefs2prefs_lfuns.py index 305b45e7b9..0606736dfd 100644 --- a/lib/scripts/prefs2prefs_lfuns.py +++ b/lib/scripts/prefs2prefs_lfuns.py @@ -133,6 +133,10 @@ def paragraph_spacing(line): return (True, newline) +def tabular_feature(line): + return simple_renaming(line, "tabular-feature", "inset-modify tabular") + + # # ########################################################### @@ -149,7 +153,8 @@ conversions = [ all_insets_toggle, line_insert, toc_insert, - paragraph_spacing + paragraph_spacing, + tabular_feature ] # end conversions for format 0 ]