Hi,

AFAICS, we no longer read and write ASCII files but UTF-8 files.

Therefore, I think it is time to rename the corresponding lyxrc entries, LFUNs, and C++ methods (see attached patch).

Ok to commit? (If yes, I will update the documentation accordingly afterwards).

Michael
Index: src/LyXAction.C
===================================================================
--- src/LyXAction.C     (Revision 16695)
+++ src/LyXAction.C     (Arbeitskopie)
@@ -158,8 +158,8 @@
                { LFUN_ERROR_NEXT, "error-next", ReadOnly },
                { LFUN_ERT_INSERT, "ert-insert", Noop },
                { LFUN_FILE_INSERT, "file-insert", Noop },
-               { LFUN_FILE_INSERT_ASCII, "file-insert-ascii", Noop },
-               { LFUN_FILE_INSERT_ASCII_PARA, "file-insert-ascii-para", Noop },
+               { LFUN_FILE_INSERT_PLAINTEXT, "file-insert-plaintext", Noop },
+               { LFUN_FILE_INSERT_PLAINTEXT_PARA, 
"file-insert-plaintext-para", Noop },
                { LFUN_FILE_NEW, "file-new", NoBuffer },
                { LFUN_FILE_OPEN, "file-open", NoBuffer },
                { LFUN_FLOAT_INSERT, "float-insert", Noop },
Index: src/lyx_cb.C
===================================================================
--- src/lyx_cb.C        (Revision 16695)
+++ src/lyx_cb.C        (Arbeitskopie)
@@ -318,14 +318,14 @@
 }
 
 
-// Insert ascii file (if filename is empty, prompt for one)
-void insertAsciiFile(BufferView * bv, string const & f, bool asParagraph)
+// Insert plain text file (if filename is empty, prompt for one)
+void insertPlaintextFile(BufferView * bv, string const & f, bool asParagraph)
 {
        if (!bv->buffer())
                return;
 
        // FIXME: We don't know the encoding of the file
-       docstring const tmpstr = from_utf8(getContentsOfAsciiFile(bv, f, 
asParagraph));
+       docstring const tmpstr = from_utf8(getContentsOfPlaintextFile(bv, f, 
asParagraph));
        if (tmpstr.empty())
                return;
 
@@ -341,14 +341,14 @@
 }
 
 
-// Insert ascii file (if filename is empty, prompt for one)
-string getContentsOfAsciiFile(BufferView * bv, string const & f, bool 
asParagraph)
+// Insert plain text file (if filename is empty, prompt for one)
+string getContentsOfPlaintextFile(BufferView * bv, string const & f, bool 
asParagraph)
 {
        FileName fname(f);
 
        if (fname.empty()) {
                FileDialog fileDlg(_("Select file to insert"),
-                       (asParagraph) ? LFUN_FILE_INSERT_ASCII_PARA : 
LFUN_FILE_INSERT_ASCII);
+                       (asParagraph) ? LFUN_FILE_INSERT_PLAINTEXT_PARA : 
LFUN_FILE_INSERT_PLAINTEXT);
 
                FileDialog::Result result =
                        fileDlg.open(from_utf8(bv->buffer()->filePath()),
Index: src/insets/insettabular.C
===================================================================
--- src/insets/insettabular.C   (Revision 16695)
+++ src/insets/insettabular.C   (Arbeitskopie)
@@ -679,12 +679,12 @@
                break;
 
        // insert file functions
-       case LFUN_FILE_INSERT_ASCII_PARA:
-       case LFUN_FILE_INSERT_ASCII: {
+       case LFUN_FILE_INSERT_PLAINTEXT_PARA:
+       case LFUN_FILE_INSERT_PLAINTEXT: {
                // FIXME UNICODE
-               string const tmpstr = getContentsOfAsciiFile(&cur.bv(), 
to_utf8(cmd.argument()), false);
+               string const tmpstr = getContentsOfPlaintextFile(&cur.bv(), 
to_utf8(cmd.argument()), false);
                // FIXME: We don't know the encoding of the file
-               if (!tmpstr.empty() && !insertAsciiString(cur.bv(), 
from_utf8(tmpstr), false))
+               if (!tmpstr.empty() && !insertPlaintextString(cur.bv(), 
from_utf8(tmpstr), false))
                        cur.undispatched();
                break;
        }
@@ -727,10 +727,10 @@
                        theSelection().get();
                if (clip.empty())
                        break;
-               // pass to InsertAsciiString, but
+               // pass to InsertPlaintextString, but
                // only if we have multi-cell content
                if (clip.find_first_of(from_ascii("\t\n")) != docstring::npos) {
-                       if (insertAsciiString(cur.bv(), clip, false)) {
+                       if (insertPlaintextString(cur.bv(), clip, false)) {
                                // content has been replaced,
                                // so cursor might be invalid
                                cur.pos() = cur.lastpos();
@@ -1957,7 +1957,7 @@
 }
 
 
-bool InsetTabular::insertAsciiString(BufferView & bv, docstring const & buf,
+bool InsetTabular::insertPlaintextString(BufferView & bv, docstring const & 
buf,
                                     bool usePaste)
 {
        if (buf.length() <= 0)
Index: src/insets/insettabular.h
===================================================================
--- src/insets/insettabular.h   (Revision 16695)
+++ src/insets/insettabular.h   (Arbeitskopie)
@@ -188,7 +188,7 @@
        void getSelection(LCursor & cur, row_type & rs, row_type & re,
                          col_type & cs, col_type & ce) const;
        ///
-       bool insertAsciiString(BufferView &, docstring const & buf, bool 
usePaste);
+       bool insertPlaintextString(BufferView &, docstring const & buf, bool 
usePaste);
        /// are we operating on several cells?
        bool tablemode(LCursor & cur) const;
 
Index: src/paragraph_pimpl.C
===================================================================
--- src/paragraph_pimpl.C       (Revision 16695)
+++ src/paragraph_pimpl.C       (Arbeitskopie)
@@ -390,7 +390,7 @@
        if (style.pass_thru)
                return;
 
-       if (column > lyxrc.ascii_linelen
+       if (column > lyxrc.plaintext_linelen
            && i
            && getChar(i - 1) != ' '
            && (i < size() - 1)
Index: src/exporter.C
===================================================================
--- src/exporter.C      (Revision 16695)
+++ src/exporter.C      (Arbeitskopie)
@@ -151,7 +151,7 @@
        string backend_format;
        OutputParams runparams;
        runparams.flavor = OutputParams::LATEX;
-       runparams.linelen = lyxrc.ascii_linelen;
+       runparams.linelen = lyxrc.plaintext_linelen;
        vector<string> backends = Backends(*buffer);
        // FIXME: Without this test export to lyx1[34] would be through
        // latex -> lyx -> lyx1[34], because the first backend below with a
Index: src/lyx_cb.h
===================================================================
--- src/lyx_cb.h        (Revision 16695)
+++ src/lyx_cb.h        (Arbeitskopie)
@@ -32,9 +32,9 @@
 ///
 void newFile(BufferView * bv, std::string const & filename);
 ///
-void insertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
+void insertPlaintextFile(BufferView * bv, std::string const & f, bool 
asParagraph);
 ///
-std::string getContentsOfAsciiFile(BufferView * bv, std::string const & f, 
bool asParagraph);
+std::string getContentsOfPlaintextFile(BufferView * bv, std::string const & f, 
bool asParagraph);
 ///
 void reconfigure(LyXView & lv);
 
Index: src/buffer.C
===================================================================
--- src/buffer.C        (Revision 16695)
+++ src/buffer.C        (Arbeitskopie)
@@ -1672,7 +1672,7 @@
        OutputParams runparams;
        runparams.nice = true;
        runparams.flavor = OutputParams::LATEX;
-       runparams.linelen = lyxrc.ascii_linelen;
+       runparams.linelen = lyxrc.plaintext_linelen;
        // No side effect of file copying and image conversion
        runparams.dryrun = true;
 
Index: src/lyxfunc.C
===================================================================
--- src/lyxfunc.C       (Revision 16695)
+++ src/lyxfunc.C       (Arbeitskopie)
@@ -2112,8 +2112,8 @@
        switch (tag) {
        case LyXRC::RC_ACCEPT_COMPOUND:
        case LyXRC::RC_ALT_LANG:
-       case LyXRC::RC_ASCIIROFF_COMMAND:
-       case LyXRC::RC_ASCII_LINELEN:
+       case LyXRC::RC_PLAINTEXT_ROFF_COMMAND:
+       case LyXRC::RC_PLAINTEXT_LINELEN:
        case LyXRC::RC_AUTOREGIONDELETE:
        case LyXRC::RC_AUTORESET_OPTIONS:
        case LyXRC::RC_AUTOSAVE:
Index: src/frontends/qt4/QPrefsDialog.C
===================================================================
--- src/frontends/qt4/QPrefsDialog.C    (Revision 16695)
+++ src/frontends/qt4/QPrefsDialog.C    (Arbeitskopie)
@@ -194,24 +194,24 @@
 : PrefModule(_(Outputs), _("Plain text"), 0, parent)
 {
        setupUi(this);
-       connect(asciiLinelengthSB, SIGNAL(valueChanged(int)),
+       connect(plaintextLinelengthSB, SIGNAL(valueChanged(int)),
                this, SIGNAL(changed()));
-       connect(asciiRoffED, SIGNAL(textChanged(const QString&)),
+       connect(plaintextRoffED, SIGNAL(textChanged(const QString&)),
                this, SIGNAL(changed()));
 }
 
 
 void PrefAscii::apply(LyXRC & rc) const
 {
-       rc.ascii_linelen = asciiLinelengthSB->value();
-       rc.ascii_roff_command = fromqstr(asciiRoffED->text());
+       rc.plaintext_linelen = plaintextLinelengthSB->value();
+       rc.plaintext_roff_command = fromqstr(plaintextRoffED->text());
 }
 
 
 void PrefAscii::update(LyXRC const & rc)
 {
-       asciiLinelengthSB->setValue(rc.ascii_linelen);
-       asciiRoffED->setText(toqstr(rc.ascii_roff_command));
+       plaintextLinelengthSB->setValue(rc.plaintext_linelen);
+       plaintextRoffED->setText(toqstr(rc.plaintext_roff_command));
 }
 
 
Index: src/frontends/qt4/ui/QPrefAsciiUi.ui
===================================================================
--- src/frontends/qt4/ui/QPrefAsciiUi.ui        (Revision 16695)
+++ src/frontends/qt4/ui/QPrefAsciiUi.ui        (Arbeitskopie)
@@ -31,12 +31,12 @@
       <number>6</number>
      </property>
      <item row="1" column="0" >
-      <widget class="QLabel" name="asciiRoffLA" >
+      <widget class="QLabel" name="plaintextRoffLA" >
        <property name="text" >
         <string>&amp;roff command:</string>
        </property>
        <property name="buddy" >
-        <cstring>asciiRoffED</cstring>
+        <cstring>plaintextRoffED</cstring>
        </property>
       </widget>
      </item>
@@ -49,7 +49,7 @@
         <number>6</number>
        </property>
        <item>
-        <widget class="QSpinBox" name="asciiLinelengthSB" >
+        <widget class="QSpinBox" name="plaintextLinelengthSB" >
          <property name="toolTip" >
           <string>Max. line length of exported plain text/LaTeX/SGML 
files</string>
          </property>
@@ -77,17 +77,17 @@
       </layout>
      </item>
      <item row="0" column="0" >
-      <widget class="QLabel" name="asciiLinelengthLA" >
+      <widget class="QLabel" name="plaintextLinelengthLA" >
        <property name="text" >
         <string>Output &amp;line length:</string>
        </property>
        <property name="buddy" >
-        <cstring>asciiLinelengthSB</cstring>
+        <cstring>plaintextLinelengthSB</cstring>
        </property>
       </widget>
      </item>
      <item row="1" column="1" >
-      <widget class="QLineEdit" name="asciiRoffED" >
+      <widget class="QLineEdit" name="plaintextRoffED" >
        <property name="toolTip" >
         <string>External app for formating tables in plain text output</string>
        </property>
Index: src/tabular.C
===================================================================
--- src/tabular.C       (Revision 16695)
+++ src/tabular.C       (Arbeitskopie)
@@ -2453,7 +2453,7 @@
 }
 
 
-int LyXTabular::asciiTopHLine(odocstream & os, row_type row,
+int LyXTabular::plaintextTopHLine(odocstream & os, row_type row,
                              vector<unsigned int> const & clen) const
 {
        idx_type const fcell = getFirstCellInRow(row);
@@ -2501,7 +2501,7 @@
 }
 
 
-int LyXTabular::asciiBottomHLine(odocstream & os, row_type row,
+int LyXTabular::plaintextBottomHLine(odocstream & os, row_type row,
                                 vector<unsigned int> const & clen) const
 {
        idx_type const fcell = getFirstCellInRow(row);
@@ -2549,7 +2549,7 @@
 }
 
 
-int LyXTabular::asciiPrintCell(Buffer const & buf, odocstream & os,
+int LyXTabular::plaintextPrintCell(Buffer const & buf, odocstream & os,
                               OutputParams const & runparams,
                               idx_type cell, row_type row, col_type column,
                               vector<unsigned int> const & clen,
@@ -2645,21 +2645,21 @@
        }
        idx_type cell = 0;
        for (row_type i = 0; i < rows_; ++i) {
-               if (!onlydata && asciiTopHLine(os, i, clen))
+               if (!onlydata && plaintextTopHLine(os, i, clen))
                        os << docstring(depth * 2, ' ');
                for (col_type j = 0; j < columns_; ++j) {
                        if (isPartOfMultiColumn(i, j))
                                continue;
                        if (onlydata && j > 0)
                                os << delim;
-                       ret += asciiPrintCell(buf, os, runparams,
+                       ret += plaintextPrintCell(buf, os, runparams,
                                              cell, i, j, clen, onlydata);
                        ++cell;
                }
                os << endl;
                if (!onlydata) {
                        os << docstring(depth * 2, ' ');
-                       if (asciiBottomHLine(os, i, clen))
+                       if (plaintextBottomHLine(os, i, clen))
                                os << docstring(depth * 2, ' ');
                }
        }
Index: src/lyxrc.C
===================================================================
--- src/lyxrc.C (Revision 16695)
+++ src/lyxrc.C (Arbeitskopie)
@@ -68,8 +68,8 @@
 keyword_item lyxrcTags[] = {
        { "\\accept_compound", LyXRC::RC_ACCEPT_COMPOUND },
        { "\\alternate_language", LyXRC::RC_ALT_LANG },
-       { "\\ascii_linelen", LyXRC::RC_ASCII_LINELEN },
-       { "\\ascii_roff_command", LyXRC::RC_ASCIIROFF_COMMAND },
+       { "\\plaintext_linelen", LyXRC::RC_PLAINTEXT_LINELEN },
+       { "\\plaintext_roff_command", LyXRC::RC_PLAINTEXT_ROFF_COMMAND },
        { "\\auto_number", LyXRC::RC_AUTO_NUMBER },
        { "\\auto_region_delete", LyXRC::RC_AUTOREGIONDELETE },
        { "\\auto_reset_options", LyXRC::RC_AUTORESET_OPTIONS },
@@ -254,7 +254,7 @@
        autosave = 300;
        auto_region_delete = true;
        auto_reset_options = false;
-       ascii_linelen = 65;
+       plaintext_linelen = 65;
        num_lastfiles = maxlastfiles;
        check_lastfiles = true;
        use_lastfilepos = true;
@@ -892,14 +892,14 @@
                        }
                        break;
 
-               case RC_ASCIIROFF_COMMAND:
+               case RC_PLAINTEXT_ROFF_COMMAND:
                        if (lexrc.next()) {
-                               ascii_roff_command = lexrc.getString();
+                               plaintext_roff_command = lexrc.getString();
                        }
                        break;
-               case RC_ASCII_LINELEN:
+               case RC_PLAINTEXT_LINELEN:
                        if (lexrc.next()) {
-                               ascii_linelen = lexrc.getInteger();
+                               plaintext_linelen = lexrc.getInteger();
                        }
                        break;
                        // Spellchecker settings:
@@ -1856,10 +1856,10 @@
                }
        case RC_USETEMPDIR:
                // Ignore it
-       case RC_ASCII_LINELEN:
+       case RC_PLAINTEXT_LINELEN:
                if (ignore_system_lyxrc ||
-                   ascii_linelen != system_lyxrc.ascii_linelen) {
-                       os << "\\ascii_linelen " << ascii_linelen << '\n';
+                   plaintext_linelen != system_lyxrc.plaintext_linelen) {
+                       os << "\\plaintext_linelen " << plaintext_linelen << 
'\n';
                }
        case RC_MAKE_BACKUP:
                if (ignore_system_lyxrc ||
@@ -1877,10 +1877,10 @@
                   << "# ASCII EXPORT SECTION ##############################\n"
                   << "#\n\n";
 
-       case RC_ASCIIROFF_COMMAND:
+       case RC_PLAINTEXT_ROFF_COMMAND:
                if (ignore_system_lyxrc ||
-                   ascii_roff_command != system_lyxrc.ascii_roff_command) {
-                       os << "\\ascii_roff_command \"" << ascii_roff_command
+                   plaintext_roff_command != 
system_lyxrc.plaintext_roff_command) {
+                       os << "\\plaintext_roff_command \"" << 
plaintext_roff_command
                           << "\"\n";
                }
 
@@ -2172,12 +2172,12 @@
                str = _("Specify an alternate language. The default is to use 
the language of the document.");
                break;
 
-       case RC_ASCIIROFF_COMMAND:
+       case RC_PLAINTEXT_ROFF_COMMAND:
                str = _("Use to define an external program to render tables in 
plain text output. E.g. \"groff -t -Tlatin1 $$FName\" where $$FName is the 
input file. If \"\" is specified, an internal routine is used.");
                break;
 
-       case RC_ASCII_LINELEN:
-               str = _("This is the maximum line length of an exported text 
file (LaTeX, SGML or plain text).");
+       case RC_PLAINTEXT_LINELEN:
+               str = _("This is the maximum line length of an exported text 
file (LaTeX, SGML or plain text). If set to 0, paragraphs are output in a 
single line; if the line length is != 0, paragraphs are separated by a blank 
line.");
                break;
 
        case RC_AUTOREGIONDELETE:
Index: src/tabular.h
===================================================================
--- src/tabular.h       (Revision 16695)
+++ src/tabular.h       (Arbeitskopie)
@@ -604,18 +604,18 @@
        int TeXRow(odocstream &, row_type const row, Buffer const & buf,
                   OutputParams const &) const;
        ///
-       // helper function for ASCII returns number of newlines
+       // helper functions for plain text return number of newlines
        ///
-       int asciiTopHLine(odocstream &, row_type row,
-                         std::vector<unsigned int> const &) const;
+       int plaintextTopHLine(odocstream &, row_type row,
+                       std::vector<unsigned int> const &) const;
        ///
-       int asciiBottomHLine(odocstream &, row_type row,
-                            std::vector<unsigned int> const &) const;
+       int plaintextBottomHLine(odocstream &, row_type row,
+                       std::vector<unsigned int> const &) const;
        ///
-       int asciiPrintCell(Buffer const &, odocstream &,
-                          OutputParams const &,
-                          idx_type cell, row_type row, col_type column,
-                          std::vector<unsigned int> const &,
+       int plaintextPrintCell(Buffer const &, odocstream &,
+                       OutputParams const &,
+                       idx_type cell, row_type row, col_type column,
+                       std::vector<unsigned int> const &,
                                           bool onlydata) const;
        /// auxiliary function for docbook
        int docbookRow(Buffer const & buf, odocstream & os, row_type,
Index: src/importer.C
===================================================================
--- src/importer.C      (Revision 16695)
+++ src/importer.C      (Arbeitskopie)
@@ -87,7 +87,7 @@
                string filename2 = (loader_format == format) ? 
filename.absFilename()
                        : changeExtension(filename.absFilename(),
                                          formats.extension(loader_format));
-               insertAsciiFile(lv->view(), filename2, as_paragraphs);
+               insertPlaintextFile(lv->view(), filename2, as_paragraphs);
                lv->dispatch(FuncRequest(LFUN_MARK_OFF));
        }
 
Index: src/BufferView.C
===================================================================
--- src/BufferView.C    (Revision 16695)
+++ src/BufferView.C    (Arbeitskopie)
@@ -610,8 +610,8 @@
                flag.enabled(!buffer_->redostack().empty());
                break;
        case LFUN_FILE_INSERT:
-       case LFUN_FILE_INSERT_ASCII_PARA:
-       case LFUN_FILE_INSERT_ASCII:
+       case LFUN_FILE_INSERT_PLAINTEXT_PARA:
+       case LFUN_FILE_INSERT_PLAINTEXT:
        case LFUN_BOOKMARK_SAVE:
                // FIXME: Actually, these LFUNS should be moved to LyXText
                flag.enabled(cursor_.inTexted());
@@ -727,14 +727,14 @@
                menuInsertLyXFile(to_utf8(cmd.argument()));
                break;
 
-       case LFUN_FILE_INSERT_ASCII_PARA:
+       case LFUN_FILE_INSERT_PLAINTEXT_PARA:
                // FIXME UNICODE
-               insertAsciiFile(this, to_utf8(cmd.argument()), true);
+               insertPlaintextFile(this, to_utf8(cmd.argument()), true);
                break;
 
-       case LFUN_FILE_INSERT_ASCII:
+       case LFUN_FILE_INSERT_PLAINTEXT:
                // FIXME UNICODE
-               insertAsciiFile(this, to_utf8(cmd.argument()), false);
+               insertPlaintextFile(this, to_utf8(cmd.argument()), false);
                break;
 
        case LFUN_FONT_STATE:
Index: src/lyxrc.h
===================================================================
--- src/lyxrc.h (Revision 16695)
+++ src/lyxrc.h (Arbeitskopie)
@@ -40,8 +40,8 @@
        enum LyXRCTags {
                RC_ACCEPT_COMPOUND = 1,
                RC_ALT_LANG,
-               RC_ASCIIROFF_COMMAND,
-               RC_ASCII_LINELEN,
+               RC_PLAINTEXT_ROFF_COMMAND,
+               RC_PLAINTEXT_LINELEN,
                RC_AUTOREGIONDELETE,
                RC_AUTORESET_OPTIONS,
                RC_AUTOSAVE,
@@ -309,9 +309,9 @@
        ///
        unsigned int autosave;
        ///
-       std::string ascii_roff_command;
+       std::string plaintext_roff_command;
        ///
-       unsigned int ascii_linelen;
+       unsigned int plaintext_linelen;
        /// use library instead of process
        bool use_spell_lib;
        /// Ispell command
Index: src/lfuns.h
===================================================================
--- src/lfuns.h (Revision 16695)
+++ src/lfuns.h (Arbeitskopie)
@@ -202,8 +202,8 @@
        // 140
        LFUN_COMMAND_EXECUTE,
        LFUN_FILE_INSERT,
-       LFUN_FILE_INSERT_ASCII,         // CFO-G 1997-11-19
-       LFUN_FILE_INSERT_ASCII_PARA,    // Levon 2001-02-14
+       LFUN_FILE_INSERT_PLAINTEXT,     // CFO-G 1997-11-19
+       LFUN_FILE_INSERT_PLAINTEXT_PARA,// Levon 2001-02-14
        LFUN_FILE_NEW,                  // for scripting purposes
        // 145
        LFUN_FILE_OPEN,
Index: lib/configure.py
===================================================================
--- lib/configure.py    (Revision 16695)
+++ lib/configure.py    (Arbeitskopie)
@@ -496,9 +496,9 @@
     ''' entries other than Format and Converter '''
     checkProg('a *roff formatter', ['groff', 'nroff'],
         rc_entry = [
-            r'\ascii_roff_command "groff -t -Tlatin1 $$FName"',
-            r'\ascii_roff_command "tbl $$FName | nroff"',
-            r'\ascii_roff_command ""' ])
+            r'\plaintext_roff_command "groff -t -Tlatin1 $$FName"',
+            r'\plaintext_roff_command "tbl $$FName | nroff"',
+            r'\plaintext_roff_command ""' ])
     checkProg('ChkTeX', ['chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38'],
         rc_entry = [ r'\chktex_command "%%"' ])
     checkProg('a spellchecker', ['ispell'],
Index: lib/bind/aqua.bind
===================================================================
--- lib/bind/aqua.bind  (Revision 16695)
+++ lib/bind/aqua.bind  (Arbeitskopie)
@@ -49,8 +49,8 @@
 \bind "M-~S-i o b"             "bibtex-insert"
 
 \bind "M-~S-i e x"             "file-insert"
-\bind "M-~S-i e l"             "file-insert-ascii"
-\bind "M-~S-i e p"             "file-insert-ascii-para"
+\bind "M-~S-i e l"             "file-insert-plaintext"
+\bind "M-~S-i e p"             "file-insert-plaintext-para"
 
 \bind "M-~S-f p"               "buffer-print"
 \bind "M-~S-f n"               "buffer-new"
Index: lib/ui/stdmenus.inc
===================================================================
--- lib/ui/stdmenus.inc (Revision 16695)
+++ lib/ui/stdmenus.inc (Arbeitskopie)
@@ -377,8 +377,8 @@
 
        Menu "insert_file"
                Item "LyX Document...|X" "file-insert"
-               Item "Plain Text as Lines...|L" "file-insert-ascii"
-               Item "Plain Text as Paragraphs...|P" "file-insert-ascii-para"
+               Item "Plain Text as Lines...|L" "file-insert-plaintext"
+               Item "Plain Text as Paragraphs...|P" 
"file-insert-plaintext-para"
                Separator
                Item "External Material...|M" "dialog-show-new-inset external"
                Item "Child Document...|d" "dialog-show-new-inset include"
Index: lib/ui/classic.ui
===================================================================
--- lib/ui/classic.ui   (Revision 16695)
+++ lib/ui/classic.ui   (Arbeitskopie)
@@ -317,8 +317,8 @@
 
        Menu "insert_file"
                Item "LyX Document...|X" "file-insert"
-               Item "Plain Text as Lines...|L" "file-insert-ascii"
-               Item "Plain Text as Paragraphs...|P" "file-insert-ascii-para"
+               Item "Plain Text as Lines...|L" "file-insert-plaintext"
+               Item "Plain Text as Paragraphs...|P" 
"file-insert-plaintext-para"
        End
 
        Menu "edit_change"

Reply via email to