Changeset 13679edb for postlfs/editors


Ignore:
Timestamp:
07/27/2005 02:00:09 AM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
a4e5c39
Parents:
8732295
Message:

Fixed typos in various Chapter 6 package instructions; slight modifications to the nano build instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4798 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
postlfs/editors
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • postlfs/editors/bluefish.xml

    r8732295 r13679edb  
    3131
    3232    <para>The <application>Bluefish</application> package contains a powerful X
    33     Window System editor designed for web designers, but which is also suitable
     33    Window System editor designed for web designers, but also suitable
    3434    as a programmer's editor.  Bluefish supports many programming and markup
    3535    languages, and as such is ideal for editing XML and HTML files.</para>
  • postlfs/editors/ed.xml

    r8732295 r13679edb  
    139139        <term><command>red</command></term>
    140140        <listitem>
    141           <para>is a restricted ed&mdash;it can only edit files in the
    142           current directory and cannot execute shell commands.</para>
     141          <para>is a restricted <command>ed</command>&mdash;it can only edit
     142          files in the current directory and cannot execute shell
     143          commands.</para>
    143144          <indexterm zone="ed red">
    144145            <primary sortas="b-red">red</primary>
  • postlfs/editors/emacs.xml

    r8732295 r13679edb  
    3030    <title>Introduction to Emacs</title>
    3131
    32     <para>The <application>Emacs</application> package contains the extensible,
     32    <para>The <application>Emacs</application> package contains an extensible,
    3333    customizable, self-documenting real-time display editor.</para>
    3434
     
    6161    <xref linkend="libjpeg"/>,
    6262    <xref linkend="libpng"/>,
    63     <xref linkend="libtiff"/> and
     63    <xref linkend="libtiff"/>, and
    6464    <xref linkend="libungif"/> or <xref linkend="giflib"/></para>
    6565
     
    7272    commands:</para>
    7373
    74 <screen><userinput>./configure --prefix=/usr \
    75    --libexecdir=/usr/sbin &amp;&amp;
     74<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/sbin &amp;&amp;
    7675make bootstrap</userinput></screen>
    7776
     
    149148        <term><command>emacsclient</command></term>
    150149        <listitem>
    151           <para>attaches an emacs <command>session</command> to an already
     150          <para>attaches an <command>emacs</command> session to an already
    152151          running <command>emacsserver</command> instance.</para>
    153152          <indexterm zone="emacs emacsclient">
  • postlfs/editors/nano.xml

    r8732295 r13679edb  
    6969    commands:</para>
    7070
    71 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
     71<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc/nano \
    7272    --enable-color --enable-multibuffer --enable-nanorc &amp;&amp;
    7373make</userinput></screen>
     
    7878
    7979<screen role="root"><userinput>make install &amp;&amp;
    80 mkdir -v -p /usr/share/doc/nano/examples &amp;&amp;
    81 cp -v nanorc.sample /usr/share/doc/nano/examples</userinput></screen>
     80install -v -m644 -D nanorc.sample /etc/nano/nanorc.sample &amp;&amp;
     81install -v -m755 -d /usr/share/doc/nano-&nano-version; &amp;&amp;
     82install -v -m644 *.html /usr/share/doc/nano-&nano-version;</userinput></screen>
    8283
    8384  </sect2>
     
    8990      <title>Config Files</title>
    9091
    91       <para><filename>/etc/nanorc</filename> and
     92      <para><filename>/etc/nano/nanorc</filename> and
    9293      <filename>~/.nanorc</filename></para>
    9394
    9495      <indexterm zone="nano nano-config">
    95         <primary sortas="e-etc-nanorc">/etc/nanorc</primary>
     96        <primary sortas="e-etc-nano-nanorc">/etc/nano/nanorc</primary>
    9697      </indexterm>
    9798
     
    105106      <title>Configuration Information</title>
    106107
    107       <para>Example configuration</para>
     108      <para>Example configuration (create as a system-wide
     109      <filename>/etc/nano/nanorc</filename> or a personal
     110      <filename>~/.nanorc</filename> file)</para>
    108111
    109112<screen><literal>set autoindent
     
    117120set suspend</literal></screen>
    118121
    119       <para>Another example is in the <filename
    120       class="directory">/usr/share/doc/nano/examples</filename> directory
    121       in the <filename>nanorc.sample</filename> file.  It includes color
    122       configurations and has some documentation included in the comments.</para>
     122      <para>Another example is the <filename>nanorc.sample</filename> file
     123      in the <filename class="directory">/etc/nano</filename> directory.
     124      It includes color configurations and has some documentation included
     125      in the comments.</para>
    123126
    124127    </sect3>
  • postlfs/editors/vim.xml

    r8732295 r13679edb  
    175175        <listitem>
    176176          <para>is the editor that runs under <application>X</application>
    177           and includes a GUI</para>
     177          and includes a GUI.</para>
    178178          <indexterm zone="vim gvim">
    179179            <primary sortas="b-gvim">gvim</primary>
     
    186186        <listitem>
    187187          <para>edits two or three versions of a file with
    188           <command>gvim</command> and show differences.</para>
     188          <command>gvim</command> and shows the differences.</para>
    189189          <indexterm zone="vim gvimdiff">
    190190            <primary sortas="b-gvimdiff">gvimdiff</primary>
Note: See TracChangeset for help on using the changeset viewer.