~ubuntu-branches/ubuntu/maverick/uim/maverick

« back to all changes in this revision

Viewing changes to emacs/output.c

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2006-11-23 15:10:53 UTC
  • mfrom: (3.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061123151053-q42sk1lvks41xpfx
Tags: 1:1.2.1-9
uim-gtk2.0.postinst: Don't call update-gtk-immodules on purge.
(closes: Bug#398530)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Copyright (c) 2005-2006 uim Project http://uim.freedesktop.org/
 
3
 
 
4
  All rights reserved.
 
5
 
 
6
  Redistribution and use in source and binary forms, with or
 
7
  without modification, are permitted provided that the
 
8
  following conditions are met:
 
9
 
 
10
  1. Redistributions of source code must retain the above
 
11
     copyright notice, this list of conditions and the
 
12
     following disclaimer.
 
13
  2. Redistributions in binary form must reproduce the above
 
14
     copyright notice, this list of conditions and the
 
15
     following disclaimer in the documentation and/or other
 
16
     materials provided with the distribution.
 
17
  3. Neither the name of authors nor the names of its
 
18
     contributors may be used to endorse or promote products
 
19
     derived from this software without specific prior written
 
20
     permission.
 
21
 
 
22
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 
23
  CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 
24
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 
25
  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
26
  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
27
  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
28
  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
29
  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
30
  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
31
  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
32
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 
33
  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
34
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
35
*/
 
36
 
 
37
#include "output.h"
 
38
 
 
39
#if 0
 
40
int
 
41
a_putchar(const int c)
 
42
{
 
43
        return putchar(c);
 
44
}
 
45
 
 
46
int
 
47
a_printf(const char *fmt, ...)
 
48
{
 
49
  int ret = 0;
 
50
        va_list ap;
 
51
 
 
52
        va_start(ap, fmt);
 
53
        ret = vfprintf(stdout, fmt, ap);
 
54
        va_end(ap);  
 
55
 
 
56
  return ret;
 
57
}
 
58
#endif
 
59
 
 
60
 
 
61
void
 
62
output_with_escape(const char *str)
 
63
{
 
64
  unsigned i;
 
65
 
 
66
  a_putchar('"');
 
67
 
 
68
  if (str != NULL) {
 
69
 
 
70
        if (strchr(str, '"') || strchr(str, '\\')) {
 
71
 
 
72
          for (i = 0; i < strlen(str); i ++) {
 
73
                if (str[i] == '"') 
 
74
                  a_printf("\\\"");
 
75
                else if (str[i] == '\\') 
 
76
                  a_printf("\\\\");
 
77
                else
 
78
                  a_putchar(str[i]);
 
79
          }
 
80
 
 
81
        } else {
 
82
          a_printf("%s", str);
 
83
        }
 
84
  }
 
85
 
 
86
  a_putchar('"');
 
87
}
 
88