]> git.eshelyaron.com Git - emacs.git/commitdiff
* xml.c (make_dom): Now static.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 19 Mar 2011 02:43:47 +0000 (19:43 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 19 Mar 2011 02:43:47 +0000 (19:43 -0700)
src/ChangeLog
src/xml.c

index 70f3daa10d3c36afc09e7af1f5c6977662863c1f..dbf5c94a87cd20c3d376465afff74b6d0d9e9162 100644 (file)
@@ -1,5 +1,7 @@
 2011-03-19  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * xml.c (make_dom): Now static.
+
        * composite.c (composition_compute_stop_pos): Rename local to
        avoid shadowing.
        (composition_reseat_it): Remove unused locals.
index 12ef14e6b9f19ebfa8a3d172465b42998114c47b..d8e6f8c3faad3d5d6ed45904ab9d9356b883b396 100644 (file)
--- a/src/xml.c
+++ b/src/xml.c
@@ -28,7 +28,8 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include "lisp.h"
 #include "buffer.h"
 
-Lisp_Object make_dom (xmlNode *node)
+static Lisp_Object
+make_dom (xmlNode *node)
 {
   if (node->type == XML_ELEMENT_NODE)
     {