1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 20:30:32 -08:00

* xml.c (make_dom): Now static.

This commit is contained in:
Paul Eggert 2011-03-18 19:43:47 -07:00
parent 11b6112221
commit c9735e30ca
2 changed files with 4 additions and 1 deletions

View 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.

View file

@ -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)
{