faq: remove outdated bits from indenting section
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 17 Mar 2009 19:02:26 +0000 (19:02 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 17 Mar 2009 19:04:37 +0000 (19:04 +0000)
docs/faq/developing.xml

index b1b8f76fffbf7b5baedb0ec11aa359decbc63d59..81b4c8f9e6f0130f133fe54645da9e29a693c9c6 100644 (file)
@@ -156,14 +156,13 @@ packages is very much appreciated.
 
     <qandaentry>
       <question id="developing-coding-style">
-        <para>What is the coding style for GStreamer core ?</para>
+        <para>What is the coding style for GStreamer code?</para>
       </question>
 
       <answer>
         <para>
-The core is basically coded in K&amp;R with 2-space indenting. 
-Just follow what's already there and you'll be fine. 
-The core could use a code cleanup though at this point.
+The core and almost all plugin modules are basically coded in K&amp;R with
+2-space indenting. Just follow what's already there and you'll be fine.
         </para>
         <para>
 Individual plugins in gst-plugins-* or plugins that you want considered for
@@ -171,21 +170,7 @@ addition to one of the gst-plugins-* modules should be coded in the same style.
 It's easier if everything is consistent. Consistency is, of course, the goal. 
         </para>
         <para>
-If you use emacs, try these lines:
-<programlisting>
-(defun gstreamer-c-mode ()
-  "C mode with adjusted defaults for use with GStreamer."
-  (interactive)
-  (c-mode)
-  (c-set-style "K&amp;R")
-  (setq c-basic-offset 2))
-
-(setq auto-mode-alist (cons '("gst.*/.*\\.[ch]$" . gstreamer-c-mode)
-                       auto-mode-alist))
-</programlisting>
-        </para>
-        <para>
-Or, run your code (only the *.c files, not the header files) through 
+Simply run your code (only the *.c files, not the header files) through
 <programlisting>
 indent \
   --braces-on-if-line \