aboutsummaryrefslogtreecommitdiffstats
path: root/src/xml.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-18 19:43:47 -0700
committerPaul Eggert2011-03-18 19:43:47 -0700
commitc9735e30cac759cd796d6b6eb2d41b4d46894a08 (patch)
tree1a6f530b400df4581f8270094b772e5779b4f140 /src/xml.c
parent11b61122218efde0ffa175c2635f99570a62d1e3 (diff)
downloademacs-c9735e30cac759cd796d6b6eb2d41b4d46894a08.tar.gz
emacs-c9735e30cac759cd796d6b6eb2d41b4d46894a08.zip
* xml.c (make_dom): Now static.
Diffstat (limited to 'src/xml.c')
-rw-r--r--src/xml.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xml.c b/src/xml.c
index 12ef14e6b9f..d8e6f8c3faa 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -28,7 +28,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28#include "lisp.h" 28#include "lisp.h"
29#include "buffer.h" 29#include "buffer.h"
30 30
31Lisp_Object make_dom (xmlNode *node) 31static Lisp_Object
32make_dom (xmlNode *node)
32{ 33{
33 if (node->type == XML_ELEMENT_NODE) 34 if (node->type == XML_ELEMENT_NODE)
34 { 35 {