annotate src/editfns.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 9ee227acff29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Lisp functions pertaining to editing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985-1987, 1989, 1992-1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: Mule 2.0, FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 /* This file has been Mule-ized. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Hacked on for Mule by Ben Wing, December 1994. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include "commands.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include "events.h" /* for EVENTP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include "insdel.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include "systime.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "sysdep.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include "syspwd.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* Some static data, and a function to initialize it for each run */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Lisp_Object Vsystem_name; /* #### - I don't see why this should be */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 /* static, either... --Stig */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #if 0 /* XEmacs - this is now dynamic */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 /* if at some point it's deemed desirable to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 use lisp variables here, then they can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 initialized to nil and then set to their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 real values upon the first call to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 functions that generate them. --stig */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Lisp_Object Vuser_real_login_name; /* login name of current user ID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 Lisp_Object Vuser_full_name; /* full name of current user */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 Lisp_Object Vuser_login_name; /* user name from LOGNAME or USER. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 extern char *get_system_name (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 Lisp_Object Qformat;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Lisp_Object Qpoint, Qmark, Qregion_beginning, Qregion_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 /* This holds the value of `environ' produced by the previous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 has never been called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 static char **environbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 init_editfns (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 /* Only used in removed code below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 char *user_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 Bufbyte *p, *q;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 struct passwd *pw; /* password entry for the current user */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 environbuf = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 /* Set up system_name even when dumping. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 init_system_name ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 #if 0 /* this is now dynamic */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 /* don't lose utterly if someone uses these during loadup. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 Vuser_real_login_name = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 Vuser_login_name = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 Vuser_full_name = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #ifndef CANNOT_DUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 /* Don't bother with this on initial start when just dumping out */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 if (!initialized)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 #endif /* not CANNOT_DUMP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 pw = (struct passwd *) getpwuid (getuid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 /* We let the real user name default to "root" because that's quite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 accurate on MSDOG and because it lets Emacs find the init file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (The DVX libraries override the Djgpp libraries here.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 Vuser_real_login_name = build_string (pw ? pw->pw_name : "root");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 Vuser_real_login_name = build_string (pw ? pw->pw_name : "unknown");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 /* Get the effective user name, by consulting environment variables,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 or the effective uid if those are unset. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 user_name = getenv ("LOGNAME");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 if (!user_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #ifdef WINDOWSNT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 user_name = (char *) getenv ("USERNAME"); /* it's USERNAME on NT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #else /* WINDOWSNT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 user_name = (char *) getenv ("USER");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #endif /* WINDOWSNT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 if (!user_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 /* #### - do we really want the EFFECTIVE uid here? Are these flipped? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 /* I ask because LOGNAME and USER vars WILL NOT MATCH the euid. --Stig */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 pw = (struct passwd *) getpwuid (geteuid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 user_name = (char *) (pw ? pw->pw_name : "unknown");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 Vuser_login_name = build_string (user_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 /* If the user name claimed in the environment vars differs from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 the real uid, use the claimed name to find the full name. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 tem = Fstring_equal (Vuser_login_name, Vuser_real_login_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* Jamie reports that IRIX gets wedged by SIGIO/SIGALARM occurring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 in select(), called from getpwnam(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 slow_down_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 pw = (struct passwd *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 getpwnam ((char *) string_data (XSTRING (Vuser_login_name)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 speed_up_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 p = (Bufbyte *) ((pw) ? USER_FULL_NAME : "unknown"); /* don't gettext here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 q = (Bufbyte *) strchr ((char *) p, ',');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 Vuser_full_name = make_ext_string (p, (q ? q - p : strlen ((char *) p)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 FORMAT_OS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #ifdef AMPERSAND_FULL_NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 p = string_data (XSTRING (Vuser_full_name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 q = (Bufbyte *) strchr ((char *) p, '&');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 /* Substitute the login name for the &, upcasing the first character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 if (q)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 char *r = (char *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 alloca (strlen ((char *) p) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 string_length (XSTRING (Vuser_login_name)) + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 Charcount fullname_off = bytecount_to_charcount (p, q - p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 memcpy (r, p, q - p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 r[q - p] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 strcat (r, (char *) string_data (XSTRING (Vuser_login_name)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 strcat (r, q + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 Vuser_full_name = build_string (r);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 set_string_char (XSTRING (Vuser_full_name), fullname_off,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 UPCASE (current_buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 string_char (XSTRING (Vuser_full_name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 fullname_off)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 #endif /* AMPERSAND_FULL_NAME */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 p = (Bufbyte *) getenv ("NAME");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 if (p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 Vuser_full_name = build_string ((char *) p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 #endif /* 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 Convert arg CH to a one-character string containing that character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (ch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 Lisp_Object ch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 Bytecount len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 Bufbyte str[MAX_EMCHAR_LEN];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 if (EVENTP (ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 Lisp_Object ch2 = Fevent_to_character (ch, Qt, Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 if (NILP (ch2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 signal_simple_continuable_error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ("character has no ASCII equivalent:", Fcopy_event (ch, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 ch = ch2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 CHECK_CHAR_COERCE_INT (ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 len = set_charptr_emchar (str, XCHAR (ch));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 return make_string (str, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 Convert arg STRING to a character, the first character of that string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 Lisp_Object str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 struct Lisp_String *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 CHECK_STRING (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 p = XSTRING (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 if (string_length (p) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 return (make_char (string_char (p, 0)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 else /* #### Gag me! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 return (Qzero);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 buildmark (Bufpos val, Lisp_Object buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 Lisp_Object mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 mark = Fmake_marker ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 Fset_marker (mark, make_int (val), buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 return mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 DEFUN ("point", Fpoint, Spoint, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 Return value of point, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 Beginning of buffer is position (point-min).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 return (make_int (BUF_PT (b)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 Return value of point, as a marker object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 This marker is a copy; you may modify it with reckless abandon.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 If optional argument DONT-COPY-P is non-nil, then it returns the real
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 point-marker; modifying the position of this marker will move point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 It is illegal to change the buffer of it, or make it point nowhere.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (dont_copy_p, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 Lisp_Object dont_copy_p, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 if (NILP (dont_copy_p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 return Fcopy_marker (b->point_marker, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 return b->point_marker;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 /* The following two functions end up being identical but it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 cleaner to declare them separately. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 Bufpos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 bufpos_clip_to_bounds (Bufpos lower, Bufpos num, Bufpos upper)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 if (num < lower)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 return lower;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 else if (num > upper)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 return upper;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 return num;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 Bytind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 bytind_clip_to_bounds (Bytind lower, Bytind num, Bytind upper)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 if (num < lower)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 return lower;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 else if (num > upper)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 return upper;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 return num;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 * Chuck says:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 * There is no absolute way to determine if goto-char is the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 * being run. this-command doesn't work because it is often eval'd
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 * and this-command ends up set to eval-expression. So this flag gets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 * added for now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 * Jamie thinks he's wrong, but we'll leave this in for now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 int atomic_extent_goto_char_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 2, "NGoto char: " /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 Set point to POSITION, a number or marker.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 Beginning of buffer is position (point-min), end is (point-max).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 Return value of POSITION, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (position, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 Lisp_Object position, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 Bufpos n = get_buffer_pos_char (b, position, GB_COERCE_RANGE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 BUF_SET_PT (b, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 atomic_extent_goto_char_p = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 return (make_int (n));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 region_limit (int beginningp, struct buffer *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 Lisp_Object m;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 && NILP (b->mark_active))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 Fsignal (Qmark_inactive, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 m = Fmarker_position (b->mark);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 if (NILP (m)) error ("There is no region now");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 if (!!(BUF_PT (b) < XINT (m)) == !!beginningp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 return (make_int (BUF_PT (b)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 return (m);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 Return position of beginning of region, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 return (region_limit (1, decode_buffer (buffer, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 Return position of end of region, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 return (region_limit (0, decode_buffer (buffer, 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 /* Whether to use lispm-style active-regions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 int zmacs_regions;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 /* Whether the zmacs region is active. This is not per-buffer because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 there can be only one active region at a time. #### Now that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 zmacs region are not directly tied to the X selections this may not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 necessarily have to be true. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 int zmacs_region_active_p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 int zmacs_region_stays;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 Lisp_Object Qzmacs_update_region, Qzmacs_deactivate_region;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 Lisp_Object Qzmacs_region_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 zmacs_update_region (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 if (zmacs_region_active_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 call0 (Qzmacs_update_region);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 zmacs_deactivate_region (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 if (zmacs_region_active_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 call0 (Qzmacs_deactivate_region);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 zmacs_region_buffer (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 if (zmacs_region_active_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 return call0 (Qzmacs_region_buffer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 Return this buffer's mark, as a marker object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 If `zmacs-regions' is true, then this returns nil unless the region is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 currently in the active (highlighted) state. If optional argument FORCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 is t, this returns the mark (if there is one) regardless of the zmacs-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 state. You should *generally* not use the mark unless the region is active,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 if the user has expressed a preference for the zmacs-region model.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 Watch out! Moving this marker changes the mark position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 If you set the marker not to point anywhere, the buffer will have no mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (force, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 Lisp_Object force, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 if (! zmacs_regions || zmacs_region_active_p || !NILP (force))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 return b->mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 /* The saved object looks like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (COPY-OF-POINT-MARKER . (COPY-OF-MARK . VISIBLE-P))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 VISIBLE-P is t if `(eq (current-buffer) (window-buffer (selected-window)))'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 but is not actually used any more.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 save_excursion_save (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 struct buffer *b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 int visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 if (preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 b = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 visible = (XBUFFER (XWINDOW (Fselected_window (Qnil))->buffer) == b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 tem = ((visible) ? Qt : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 #ifdef ERROR_CHECK_BUFPOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 assert (XINT (Fpoint (Qnil)) ==
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 XINT (Fmarker_position (Fpoint_marker (Qt, Qnil))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 tem = Fcons (tem, b->mark_active);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 return noseeum_cons (noseeum_copy_marker (Fpoint_marker (Qt, Qnil), Qnil),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 noseeum_cons (noseeum_copy_marker (b->mark, Qnil),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 save_excursion_restore (Lisp_Object info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 int visible;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 struct gcpro gcpro1, gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 tem = Fmarker_buffer (Fcar (info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 /* If buffer being returned to is now deleted, avoid error */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 /* Otherwise could get error here while unwinding to top level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 and crash */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 /* In that case, Fmarker_buffer returns nil now. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 if (NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 /* Need gcpro in case Lisp hooks get run */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 GCPRO2 (info, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 Fset_buffer (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 tem = Fcar (info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 Fgoto_char (tem, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 tem = Fcar (Fcdr (info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 tem = Fcdr (Fcdr (info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 visible = !NILP (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 #if 0 /* We used to make the current buffer visible in the selected window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 if that was true previously. That avoids some anomalies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 But it creates others, and it wasn't documented, and it is simpler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 and cleaner never to alter the window/buffer connections. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 /* #### I'm certain some code somewhere depends on this behavior. --jwz */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 if (visible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 && (current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 switch_to_buffer (Fcurrent_buffer (), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 /* Free all the junk we allocated, so that a `save-excursion' comes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 for free in terms of GC junk. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 free_marker (XMARKER (XCAR (info)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 free_marker (XMARKER (XCAR (XCDR (info))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 free_cons (XCONS (XCDR (info)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 free_cons (XCONS (info));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 Save point, mark, and current buffer; execute BODY; restore those things.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 Executes BODY just like `progn'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 The values of point, mark and the current buffer are restored
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 even in case of abnormal exit (throw or error).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 Lisp_Object args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 record_unwind_protect (save_excursion_restore, save_excursion_save ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 return unbind_to (speccount, Fprogn (args));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 Return the number of characters in BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 return (make_int (BUF_SIZE (b)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 Return the minimum permissible value of point in BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 This is 1, unless narrowing (a buffer restriction) is in effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 return (make_int (BUF_BEGV (b)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 Return a marker to the minimum permissible value of point in BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 This is the beginning, unless narrowing (a buffer restriction) is in effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 return buildmark (BUF_BEGV (b), make_buffer (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 Return the maximum permissible value of point in BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 is in effect, in which case it is less.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 return (make_int (BUF_ZV (b)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 Return a marker to the maximum permissible value of point BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 is in effect, in which case it is less.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 return buildmark (BUF_ZV (b), make_buffer (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 Return the character following point, as a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 At the end of the buffer or accessible region, return 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 if (BUF_PT (b) >= BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 return (Qzero); /* #### Gag me! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 return (make_char (BUF_FETCH_CHAR (b, BUF_PT (b))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 DEFUN ("preceding-char", Fpreceding_char, Spreceding_char, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 Return the character preceding point, as a number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 At the beginning of the buffer or accessible region, return 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 if (BUF_PT (b) <= BUF_BEGV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 return (Qzero); /* #### Gag me! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 return (make_char (BUF_FETCH_CHAR (b, BUF_PT (b) - 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 DEFUN ("bobp", Fbobp, Sbobp, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 Return T if point is at the beginning of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 If the buffer is narrowed, this means the beginning of the narrowed part.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 if (BUF_PT (b) == BUF_BEGV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 DEFUN ("eobp", Feobp, Seobp, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 Return T if point is at the end of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 If the buffer is narrowed, this means the end of the narrowed part.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 if (BUF_PT (b) == BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 beginning_of_line_p (struct buffer *b, Bufpos pt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 if (pt <= BUF_BEGV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 return BUF_FETCH_CHAR (b, pt - 1) == '\n';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 DEFUN ("bolp", Fbolp, Sbolp, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 Return T if point is at the beginning of a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 return beginning_of_line_p (b, BUF_PT (b)) ? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 DEFUN ("eolp", Feolp, Seolp, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 Return T if point is at the end of a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 `End of a line' includes point being at the end of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 if (BUF_PT (b) == BUF_ZV (b) || BUF_FETCH_CHAR (b, BUF_PT (b)) == '\n')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 DEFUN ("char-after", Fchar_after, Schar_after, 1, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 Return character in BUFFER at position POS.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 POS is an integer or a buffer pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 If POS is out of range, the value is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (pos, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 Lisp_Object pos, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 Bufpos n = get_buffer_pos_char (b, pos, GB_NO_ERROR_IF_BAD);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 if (n < 0 || n == BUF_ZV (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 return (make_char (BUF_FETCH_CHAR (b, n)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 Return the name under which the user logged in, as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 This is based on the effective uid, not the real uid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 Also, if the environment variable LOGNAME or USER is set,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 that determines the value of this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 If the optional argument UID is present, then environment variables are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 ignored and this function returns the login name for that UID, or nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (uid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 Lisp_Object uid;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 struct passwd *pw = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 if (!NILP (uid))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 CHECK_INT (uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 pw = (struct passwd *) getpwuid (XINT (uid));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 char *user_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 /* #### - when euid != uid, then LOGNAME and USER are leftovers from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 old environment (I site observed behavior on sunos and linux), so the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 environment variables should be disregarded in that case. --Stig */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 user_name = getenv ("LOGNAME");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 if (!user_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 #ifdef WINDOWSNT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 user_name = (char *) getenv ("USERNAME"); /* it's USERNAME on NT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 #else /* WINDOWSNT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 user_name = (char *) getenv ("USER");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 #endif /* WINDOWSNT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 if (user_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 return (build_string (user_name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 pw = (struct passwd *) getpwuid (geteuid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 /* #### - I believe this should return nil instead of "unknown" when pw==0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 return (pw ? build_string (pw->pw_name) : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 Return the name of the user's real uid, as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 This ignores the environment variables LOGNAME and USER, so it differs from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 `user-login-name' when running under `su'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 struct passwd *pw = (struct passwd *) getpwuid (getuid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 /* #### - I believe this should return nil instead of "unknown" when pw==0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 /* We let the real user name default to "root" because that's quite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 accurate on MSDOG and because it lets Emacs find the init file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (The DVX libraries override the Djgpp libraries here.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 Lisp_Object tem = build_string (pw ? pw->pw_name : "root");/* no gettext */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 Lisp_Object tem = build_string (pw ? pw->pw_name : "unknown");/* no gettext */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 return (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 Return the effective uid of Emacs, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 return make_int (geteuid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 Return the real uid of Emacs, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 return make_int (getuid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 Return the full name of the user logged in, as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 If the optional argument USER is given, then the full name for that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 user is returned, or nil. USER may be either a login name or a uid.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (user)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 Lisp_Object user;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 Lisp_Object uname = (STRINGP (user) ? user : Fuser_login_name (user));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 struct passwd *pw = NULL;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 char *p, *q;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 if (!NILP (uname)) /* nil when nonexistent UID passed as arg */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 CONST char *uname_ext;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 /* Fuck me. getpwnam() can call select() and (under IRIX at least)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 things get wedged if a SIGIO arrives during this time. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 GET_C_STRING_OS_DATA_ALLOCA (uname, uname_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 slow_down_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 pw = (struct passwd *) getpwnam (uname_ext);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 speed_up_interrupts ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 /* #### - Stig sez: this should return nil instead of "unknown" when pw==0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 /* Ben sez: bad idea because it's likely to break something */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 #ifndef AMPERSAND_FULL_NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 p = (char *) ((pw) ? USER_FULL_NAME : "unknown"); /* don't gettext */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 q = (char *) strchr ((char *) p, ',');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 p = (char *) ((pw) ? USER_FULL_NAME : "unknown"); /* don't gettext */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 q = (char *) strchr ((char *) p, ',');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 tem = ((!NILP (user) && !pw)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 ? Qnil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 : make_ext_string ((unsigned char *) p, (q ? q - p : strlen (p)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 FORMAT_OS));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 #ifdef AMPERSAND_FULL_NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 if (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 p = (char *) string_data (XSTRING (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 q = strchr (p, '&');
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 /* Substitute the login name for the &, upcasing the first character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 if (q)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 char *r = (char *) alloca (strlen (p) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 string_length (XSTRING (uname)) + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 memcpy (r, p, q - p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 r[q - p] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 strcat (r, (char *) string_data (XSTRING (uname)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 /* #### current_buffer dependency! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 r[q - p] = UPCASE (current_buffer, r[q - p]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 strcat (r, q + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 tem = build_string (r);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 #endif /* AMPERSAND_FULL_NAME */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 p = getenv ("NAME");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 if (p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 tem = build_string (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 return (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 Return the name of the machine you are running on, as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 return (Fcopy_sequence (Vsystem_name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 /* For the benefit of callers who don't want to include lisp.h.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 Caller must free! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 get_system_name (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 return xstrdup ((char *) string_data (XSTRING (Vsystem_name)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 Return the process ID of Emacs, as an integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 return make_int (getpid ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 Return the current time, as the number of seconds since 1970-01-01 00:00:00.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 The time is returned as a list of three integers. The first has the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 most significant 16 bits of the seconds, while the second has the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 least significant 16 bits. The third integer gives the microsecond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 The microsecond count is zero on systems that do not provide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 resolution finer than a second.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 EMACS_TIME t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 Lisp_Object result[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 EMACS_GET_TIME (t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 XSETINT (result[0], (EMACS_SECS (t) >> 16) & 0xffff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 XSETINT (result[1], (EMACS_SECS (t) >> 0) & 0xffff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 XSETINT (result[2], EMACS_USECS (t));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 return Flist (3, result);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 DEFUN ("current-process-time", Fcurrent_process_time, Scurrent_process_time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 Return the amount of time used by this XEmacs process so far.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 The return value is a list of three floating-point numbers, expressing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 the user, system, and real times used by the process. The user time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 measures the time actually spent by the CPU executing the code in this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 process. The system time measures time spent by the CPU executing kernel
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 code on behalf of this process (e.g. I/O requests made by the process).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 Note that the user and system times measure processor time, as opposed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 to real time, and only accrue when the processor is actually doing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 something: Time spent in an idle wait (waiting for user events to come
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 in or for I/O on a disk drive or other device to complete) does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 count. Thus, the user and system times will often be considerably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 less than the real time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 Some systems do not allow the user and system times to be distinguished.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 In this case, the user time will be the total processor time used by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 the process, and the system time will be 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 Some systems do not allow the real and processor times to be distinguished.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 In this case, the user and real times will be the same and the system
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 time will be 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 double user, sys, real;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 get_process_times (&user, &sys, &real);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 return list3 (make_float (user), make_float (sys), make_float (real));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 lisp_to_time (Lisp_Object specified_time, time_t *result)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 if (NILP (specified_time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 return time (result) != -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 Lisp_Object high, low;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 high = Fcar (specified_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 CHECK_INT (high);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 low = Fcdr (specified_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 if (CONSP (low))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 low = Fcar (low);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 CHECK_INT (low);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 return *result >> 16 == XINT (high);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 time_to_lisp (time_t the_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 unsigned int item = (unsigned int) the_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 return Fcons (make_int (item >> 16), make_int (item & 0xffff));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 size_t emacs_strftime (char *string, size_t max, CONST char *format,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 CONST struct tm *tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 static long difftm (CONST struct tm *a, CONST struct tm *b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 Use FORMAT-STRING to format the time TIME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 TIME is specified as (HIGH LOW . IGNORED) or (HIGH . LOW), as from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 `current-time' and `file-attributes'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 FORMAT-STRING may contain %-sequences to substitute parts of the time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 %a is replaced by the abbreviated name of the day of week.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 %A is replaced by the full name of the day of week.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 %b is replaced by the abbreviated name of the month.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 %B is replaced by the full name of the month.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 %c is a synonym for \"%x %X\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 %C is a locale-specific synonym, which defaults to \"%A, %B %e, %Y\" in the C locale.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 %d is replaced by the day of month, zero-padded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 %D is a synonym for \"%m/%d/%y\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 %e is replaced by the day of month, blank-padded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 %h is a synonym for \"%b\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 %H is replaced by the hour (00-23).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 %I is replaced by the hour (00-12).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 %j is replaced by the day of the year (001-366).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 %k is replaced by the hour (0-23), blank padded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 %l is replaced by the hour (1-12), blank padded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 %m is replaced by the month (01-12).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 %M is replaced by the minute (00-59).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 %n is a synonym for \"\\n\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 %p is replaced by AM or PM, as appropriate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 %r is a synonym for \"%I:%M:%S %p\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 %R is a synonym for \"%H:%M\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 %S is replaced by the second (00-60).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 %t is a synonym for \"\\t\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 %T is a synonym for \"%H:%M:%S\".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 %U is replaced by the week of the year (00-53), first day of week is Sunday.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 %w is replaced by the day of week (0-6), Sunday is day 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 %W is replaced by the week of the year (00-53), first day of week is Monday.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 %x is a locale-specific synonym, which defaults to \"%D\" in the C locale.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 %X is a locale-specific synonym, which defaults to \"%T\" in the C locale.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 %y is replaced by the year without century (00-99).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 %Y is replaced by the year with century.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 %Z is replaced by the time zone abbreviation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 The number of options reflects the `strftime' function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 BUG: If the charset used by the current locale is not ISO 8859-1, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 characters appearing in the day and month names may be incorrect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 (format_string, _time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 Lisp_Object format_string, _time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 time_t value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 int size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 CHECK_STRING (format_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 if (! lisp_to_time (_time, &value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 error ("Invalid time specification");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 /* This is probably enough. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 size = string_length (XSTRING (format_string)) * 6 + 50;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 while (1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 char *buf = (char *) alloca (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 *buf = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 if (emacs_strftime (buf, size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 (CONST char *) string_data (XSTRING (format_string)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 localtime (&value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 || !*buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 return build_ext_string (buf, FORMAT_BINARY);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 /* If buffer was too small, make it bigger. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 size *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 or (HIGH . LOW), as from `current-time' and `file-attributes', or `nil'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 to use the current time. The list has the following nine members:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 SEC is an integer between 0 and 60; SEC is 60 for a leap second, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 only some operating systems support. MINUTE is an integer between 0 and 59.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 HOUR is an integer between 0 and 23. DAY is an integer between 1 and 31.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 MONTH is an integer between 1 and 12. YEAR is an integer indicating the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 four-digit year. DOW is the day of week, an integer between 0 and 6, where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 0 is Sunday. DST is t if daylight savings time is effect, otherwise nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 ZONE is an integer indicating the number of seconds east of Greenwich.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 \(Note that Common Lisp has different meanings for DOW and ZONE.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (specified_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 Lisp_Object specified_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 time_t time_spec;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 struct tm save_tm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 struct tm *decoded_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 Lisp_Object list_args[9];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 if (! lisp_to_time (specified_time, &time_spec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 error ("Invalid time specification");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 decoded_time = localtime (&time_spec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 XSETINT (list_args[0], decoded_time->tm_sec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 XSETINT (list_args[1], decoded_time->tm_min);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 XSETINT (list_args[2], decoded_time->tm_hour);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 XSETINT (list_args[3], decoded_time->tm_mday);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 XSETINT (list_args[4], decoded_time->tm_mon + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 XSETINT (list_args[5], decoded_time->tm_year + 1900);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 XSETINT (list_args[6], decoded_time->tm_wday);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 /* Make a copy, in case gmtime modifies the struct. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 save_tm = *decoded_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 decoded_time = gmtime (&time_spec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 if (decoded_time == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 list_args[8] = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 XSETINT (list_args[8], difftm (&save_tm, decoded_time));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 return Flist (9, list_args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 static void set_time_zone_rule (char *tzstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 This is the reverse operation of `decode-time', which see.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 ZONE defaults to the current time zone rule. This can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 be a string (as from `set-time-zone-rule'), or it can be a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 (as from `current-time-zone') or an integer (as from `decode-time')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 applied without consideration for daylight savings time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 You can pass more than 7 arguments; then the first six arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 The intervening arguments are ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 This feature lets (apply 'encode-time (decode-time ...)) work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 for example, a DAY of 0 means the day preceding the given month.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 Year numbers less than 100 are treated just like other year numbers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 If you want them to stand for years in this century, you must do that yourself
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 time_t _time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 struct tm tm;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 Lisp_Object zone = (nargs > 6) ? args[nargs - 1] : Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 CHECK_INT (args[0]); /* second */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 CHECK_INT (args[1]); /* minute */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 CHECK_INT (args[2]); /* hour */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 CHECK_INT (args[3]); /* day */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 CHECK_INT (args[4]); /* month */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 CHECK_INT (args[5]); /* year */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 tm.tm_sec = XINT (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 tm.tm_min = XINT (args[1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 tm.tm_hour = XINT (args[2]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 tm.tm_mday = XINT (args[3]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 tm.tm_mon = XINT (args[4]) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 tm.tm_year = XINT (args[5]) - 1900;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 tm.tm_isdst = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 if (CONSP (zone))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 zone = Fcar (zone);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 if (NILP (zone))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 _time = mktime (&tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 char tzbuf[100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 char *tzstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 char **oldenv = environ, **newenv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 if (STRINGP (zone))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 tzstring = (char *) string_data (XSTRING (zone));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 else if (INTP (zone))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 int abszone = abs (XINT (zone));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 abszone / (60*60), (abszone/60) % 60, abszone % 60);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 tzstring = tzbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 error ("Invalid time zone specification");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 /* Set TZ before calling mktime; merely adjusting mktime's returned
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 value doesn't suffice, since that would mishandle leap seconds. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 set_time_zone_rule (tzstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 _time = mktime (&tm);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 /* Restore TZ to previous value. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 newenv = environ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 environ = oldenv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 free (newenv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 #ifdef LOCALTIME_CACHE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 tzset ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 if (_time == (time_t) -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 error ("Specified time is not representable");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 return wasteful_word_to_lisp (_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 Return the current time, as a human-readable string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 Programs can use this function to decode a time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 since the number of columns in each field is fixed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 The format is `Sun Sep 16 01:03:52 1973'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 If an argument is given, it specifies a time to format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 instead of the current time. The argument should have the form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 (HIGH . LOW)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 or the form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 (HIGH LOW . IGNORED).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 Thus, you can use times obtained from `current-time'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 and from `file-attributes'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 (specified_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 Lisp_Object specified_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 time_t value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 char buf[30];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 char *tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 if (! lisp_to_time (specified_time, &value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 value = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 tem = (char *) ctime (&value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 strncpy (buf, tem, 24);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 buf[24] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 return build_ext_string (buf, FORMAT_BINARY);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 #define TM_YEAR_ORIGIN 1900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 /* Yield A - B, measured in seconds. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 static long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 difftm (CONST struct tm *a, CONST struct tm *b)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 int by = b->tm_year + (TM_YEAR_ORIGIN - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 /* Some compilers can't handle this as a single return statement. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 long days = (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 /* difference in day of year */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 a->tm_yday - b->tm_yday
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 /* + intervening leap days */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 + ((ay >> 2) - (by >> 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 - (ay/100 - by/100)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 + ((ay/100 >> 2) - (by/100 >> 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 /* + difference in years * 365 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 + (long)(ay-by) * 365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 return (60*(60*(24*days + (a->tm_hour - b->tm_hour))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 + (a->tm_min - b->tm_min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 + (a->tm_sec - b->tm_sec));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 Return the offset and name for the local time zone.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 This returns a list of the form (OFFSET NAME).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 A negative value means west of Greenwich.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 NAME is a string giving the name of the time zone.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 If an argument is given, it specifies when the time zone offset is determined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 instead of using the current time. The argument should have the form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (HIGH . LOW)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 or the form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (HIGH LOW . IGNORED).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 Thus, you can use times obtained from `current-time'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 and from `file-attributes'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 Some operating systems cannot provide all this information to Emacs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 in this case, `current-time-zone' returns a list containing nil for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 the data it can't find.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 (specified_time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 Lisp_Object specified_time;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 time_t value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 struct tm *t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 if (lisp_to_time (specified_time, &value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 && (t = gmtime (&value)) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 struct tm gmt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 long offset;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 char *s, buf[6];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 gmt = *t; /* Make a copy, in case localtime modifies *t. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 t = localtime (&value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 offset = difftm (t, &gmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 s = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 #ifdef HAVE_TM_ZONE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 if (t->tm_zone)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 s = (char *)t->tm_zone;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 #else /* not HAVE_TM_ZONE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 #ifdef HAVE_TZNAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 if (t->tm_isdst == 0 || t->tm_isdst == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 s = tzname[t->tm_isdst];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 #endif /* not HAVE_TM_ZONE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 if (!s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 /* No local time zone name is available; use "+-NNNN" instead. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 int am = (offset < 0 ? -offset : offset) / 60;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 s = buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 return list2 (make_int (offset), build_string (s));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 return list2 (Qnil, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 /* Set the local time zone rule to TZSTRING.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 This allocates memory into `environ', which it is the caller's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 responsibility to free. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 set_time_zone_rule (char *tzstring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 int envptrs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 char **from, **to, **newenv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 for (from = environ; *from; from++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 envptrs = from - environ + 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 + (tzstring ? strlen (tzstring) + 4 : 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 if (tzstring)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 char *t = (char *) (to + envptrs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 strcpy (t, "TZ=");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 strcat (t, tzstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 *to++ = t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 for (from = environ; *from; from++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 if (strncmp (*from, "TZ=", 3) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 *to++ = *from;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 *to = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 environ = newenv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 #ifdef LOCALTIME_CACHE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 tzset ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 Set the local time zone using TZ, a string specifying a time zone rule.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 If TZ is nil, use implementation-defined default time zone information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 (tz)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 Lisp_Object tz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 char *tzstring;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 if (NILP (tz))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 tzstring = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 CHECK_STRING (tz);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 tzstring = (char *) string_data (XSTRING (tz));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 set_time_zone_rule (tzstring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 if (environbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 xfree (environbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 environbuf = environ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 buffer_insert1 (struct buffer *buf, Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 GCPRO1 (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 if (CHAR_OR_CHAR_INTP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 buffer_insert_emacs_char (buf, XCHAR_OR_CHAR_INT (arg));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 else if (STRINGP (arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 buffer_insert_lisp_string (buf, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 arg = wrong_type_argument (Qchar_or_string_p, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 /* Callers passing one argument to Finsert need not gcpro the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 argument "array", since the only element of the array will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 not be used after calling insert_emacs_char or insert_lisp_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 so we don't care if it gets trashed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 Insert the arguments, either strings or characters, at point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 Point moves forward so that it ends up after the inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 Any other markers at the point of insertion remain before the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 If a string has non-null string-extent-data, new extents will be created.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 REGISTER int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 for (argnum = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 buffer_insert1 (current_buffer, args[argnum]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 Insert strings or characters at point, relocating markers after the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 Point moves forward so that it ends up after the inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 Any other markers at the point of insertion also end up after the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 REGISTER int argnum;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 REGISTER Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 for (argnum = 0; argnum < nargs; argnum++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 tem = args[argnum];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 retry:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 if (CHAR_OR_CHAR_INTP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 buffer_insert_emacs_char_1 (current_buffer, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 XCHAR_OR_CHAR_INT (tem),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 INSDEL_BEFORE_MARKERS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 else if (STRINGP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 buffer_insert_lisp_string_1 (current_buffer, -1, tem,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 INSDEL_BEFORE_MARKERS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 tem = wrong_type_argument (Qchar_or_string_p, tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 goto retry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 DEFUN ("insert-string", Finsert_string, Sinsert_string, 1, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 Insert STRING into BUFFER at BUFFER's point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 Point moves forward so that it ends up after the inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 Any other markers at the point of insertion remain before the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 If a string has non-null string-extent-data, new extents will be created.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 BUFFER defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 (string, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 Lisp_Object string, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 struct buffer *buf = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 CHECK_STRING (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 buffer_insert_lisp_string (buf, string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 /* Third argument in FSF is INHERIT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 "The optional third arg INHERIT, if non-nil, says to inherit text properties\n\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 from adjoining text, if those properties are sticky."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 Jamie thinks this is bogus. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 DEFUN ("insert-char", Finsert_char, Sinsert_char, 1, 4, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 Insert COUNT (second arg) copies of CHR (first arg).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 Point and all markers are affected as in the function `insert'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 COUNT defaults to 1 if omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 The optional third arg IGNORED is INHERIT under FSF Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 This is highly bogus, however, and XEmacs always behaves as if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 `t' were passed to INHERIT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 The optional fourth arg BUFFER specifies the buffer to insert the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 text into. If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (chr, count, ignored, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 Lisp_Object chr, count, ignored, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 REGISTER Bufbyte *string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 REGISTER int slen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 REGISTER int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 REGISTER Bytecount n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 REGISTER Bytecount charlen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 Bufbyte str[MAX_EMCHAR_LEN];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 struct buffer *buf = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 int cou;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 CHECK_CHAR_COERCE_INT (chr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 if (NILP (count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 cou = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 CHECK_INT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 cou = XINT (count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 charlen = set_charptr_emchar (str, XCHAR (chr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 n = cou * charlen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 if (n <= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 slen = min (n, 768);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 string = (Bufbyte *) alloca (slen * sizeof (Bufbyte));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 /* Write as many copies of the character into the temp string as will fit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 for (i = 0; i + charlen <= slen; i += charlen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 for (j = 0; j < charlen; j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 string[i + j] = str[j];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 slen = i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 while (n >= slen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 buffer_insert_raw_string (buf, string, slen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 n -= slen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 if (n > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 #if 0 /* FSFmacs bogosity */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 if (!NILP (inherit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 insert_and_inherit (string, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 insert (string, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 buffer_insert_raw_string (buf, string, n);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 /* Making strings from buffer contents. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 0, 3, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 Return the contents of part of BUFFER as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 The two arguments START and END are character positions;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 they can be in either order. If omitted, they default to the beginning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 and end of BUFFER, respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 If there are duplicable extents in the region, the string remembers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 them in its extent data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (start, end, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 Lisp_Object start, end, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 Bufpos begv, zv;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 get_buffer_range_char (b, start, end, &begv, &zv, GB_ALLOW_NIL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 return make_string_from_buffer (b, begv, zv - begv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 1, 3, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 Insert before point a substring of the contents of buffer BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 BUFFER may be a buffer or a buffer name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 Arguments START and END are character numbers specifying the substring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 They default to the beginning and the end of BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 (buffer, start, end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 Lisp_Object buffer, start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 Bufpos b, e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 struct buffer *bp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 bp = XBUFFER (get_buffer (buffer, 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 get_buffer_range_char (bp, start, end, &b, &e, GB_ALLOW_NIL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 if (b < e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 buffer_insert_from_buffer (current_buffer, bp, b, e - b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 6, 6, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 Compare two substrings of two buffers; return result as number.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 the value is -N if first string is less after N-1 chars,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 +N if first string is greater after N-1 chars, or 0 if strings match.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 Each substring is represented as three arguments: BUFFER, START and END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 That makes six args in all, three for each substring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 The value of `case-fold-search' in the current buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 determines whether case is significant or ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 (buffer1, start1, end1, buffer2, start2, end2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 Bufpos begp1, endp1, begp2, endp2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 REGISTER Charcount len1, len2, length, i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 struct buffer *bp1, *bp2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 Lisp_Object trt = ((!NILP (current_buffer->case_fold_search)) ?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 current_buffer->case_canon_table : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 /* Find the first buffer and its substring. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 bp1 = decode_buffer (buffer1, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 get_buffer_range_char (bp1, start1, end1, &begp1, &endp1, GB_ALLOW_NIL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 /* Likewise for second substring. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 bp2 = decode_buffer (buffer2, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 get_buffer_range_char (bp2, start2, end2, &begp2, &endp2, GB_ALLOW_NIL);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 len1 = endp1 - begp1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 len2 = endp2 - begp2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 length = len1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 if (len2 < length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 length = len2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 for (i = 0; i < length; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 Emchar c1 = BUF_FETCH_CHAR (bp1, begp1 + i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 Emchar c2 = BUF_FETCH_CHAR (bp2, begp2 + i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 if (!NILP (trt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 c1 = TRT_TABLE_OF (trt, c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 c2 = TRT_TABLE_OF (trt, c2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 if (c1 < c2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 return make_int (- 1 - i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 if (c1 > c2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 return make_int (i + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 /* The strings match as far as they go.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 If one is shorter, that one is less. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 if (length < len1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 return make_int (length + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 else if (length < len2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 return make_int (- length - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 /* Same length too => they are equal. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 return Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 subst_char_in_region_unwind (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 XBUFFER (XCAR (arg))->undo_list = XCDR (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 subst_char_in_region_unwind_1 (Lisp_Object arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 XBUFFER (XCAR (arg))->filename = XCDR (arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 Ssubst_char_in_region, 4, 5, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 From START to END, replace FROMCHAR with TOCHAR each time it occurs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 If optional arg NOUNDO is non-nil, don't record this change for undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 and don't mark the buffer as really changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 (start, end, fromchar, tochar, noundo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 Lisp_Object start, end, fromchar, tochar, noundo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 Bufpos pos, stop;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 Emchar fromc, toc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 int mc_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 struct buffer *buf = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 int count = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 get_buffer_range_char (buf, start, end, &pos, &stop, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 CHECK_CHAR_COERCE_INT (fromchar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 CHECK_CHAR_COERCE_INT (tochar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 fromc = XCHAR (fromchar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 toc = XCHAR (tochar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 /* If we don't want undo, turn off putting stuff on the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 That's faster than getting rid of things,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 and it prevents even the entry for a first change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 Also inhibit locking the file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 if (!NILP (noundo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 record_unwind_protect (subst_char_in_region_unwind,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 Fcons (Fcurrent_buffer (), buf->undo_list));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 buf->undo_list = Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 /* Don't do file-locking. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 record_unwind_protect (subst_char_in_region_unwind_1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 Fcons (Fcurrent_buffer (), buf->filename));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 buf->filename = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 mc_count = begin_multiple_change (buf, pos, stop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 while (pos < stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 if (BUF_FETCH_CHAR (buf, pos) == fromc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 /* There used to be some code here that set the buffer to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 unmodified if NOUNDO was specified and there was only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 one change to the buffer since it was last saved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 This is a crock of shit, so I'm not duplicating this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 behavior. I think this was left over from when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 prepare_to_modify_buffer() actually bumped MODIFF,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 so that code was supposed to undo this change. --ben */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 buffer_replace_char (buf, pos, toc, !NILP (noundo), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 /* If noundo is not nil then we don't mark the buffer as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 modified. In reality that needs to happen externally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 only. Internally redisplay needs to know that the actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 contents it should be displaying have changed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 if (!NILP (noundo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 Fset_buffer_modified_p (Fbuffer_modified_p (Qnil), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 pos++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 end_multiple_change (buf, mc_count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 unbind_to (count, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 DEFUN ("translate-region", Ftranslate_region, Stranslate_region, 3, 3, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 From START to END, translate characters according to TABLE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 TABLE is a string; the Nth character in it is the mapping
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 for the character with code N. Returns the number of characters changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (start, end, table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 Lisp_Object start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 Lisp_Object end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 Lisp_Object table;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 Bufpos pos, stop; /* Limits of the region. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 REGISTER Emchar oc; /* Old character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 REGISTER Emchar nc; /* New character. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 int cnt; /* Number of changes made. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 Charcount size; /* Size of translate table. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 int mc_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 struct buffer *buf = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 get_buffer_range_char (buf, start, end, &pos, &stop, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 CHECK_STRING (table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 size = string_char_length (XSTRING (table));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 cnt = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 mc_count = begin_multiple_change (buf, pos, stop);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 for (; pos < stop; pos++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 oc = BUF_FETCH_CHAR (buf, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 if (oc >= 0 && oc < size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 nc = string_char (XSTRING (table), oc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 if (nc != oc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 buffer_replace_char (buf, pos, nc, 0, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 ++cnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 end_multiple_change (buf, mc_count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 return make_int (cnt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 3, "r" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 Delete the text between point and mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 When called from a program, expects two arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 positions (integers or markers) specifying the stretch to be deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 (b, e, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 Lisp_Object b, e, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 Bufpos start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 struct buffer *buf = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 get_buffer_range_char (buf, b, e, &start, &end, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 buffer_delete_range (buf, start, end, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 widen_buffer (struct buffer *b, int no_clip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 if (BUF_BEGV (b) != BUF_BEG (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 clip_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 SET_BOTH_BUF_BEGV (b, BUF_BEG (b), BI_BUF_BEG (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 if (BUF_ZV (b) != BUF_Z (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 clip_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 SET_BOTH_BUF_ZV (b, BUF_Z (b), BI_BUF_Z (b));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 if (clip_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 if (!no_clip)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 MARK_CLIP_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 /* Changing the buffer bounds invalidates any recorded current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 column. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 invalidate_current_column ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 DEFUN ("widen", Fwiden, Swiden, 0, 1, "" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 Remove restrictions (narrowing) from BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 This allows the buffer's full text to be seen and edited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 Lisp_Object buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 struct buffer *b = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 widen_buffer (b, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 3, "r" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 Restrict editing in BUFFER to the current region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 The rest of the text becomes temporarily invisible and untouchable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 but is not deleted; if you save the buffer in a file, the invisible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 text is included in the file. \\[widen] makes all visible again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 See also `save-restriction'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 When calling from a program, pass two arguments; positions (integers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 or markers) bounding the text that should remain visible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 (b, e, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 Lisp_Object b, e, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 Bufpos start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 struct buffer *buf = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 Bytind bi_start, bi_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 get_buffer_range_char (buf, b, e, &start, &end, GB_ALLOW_PAST_ACCESSIBLE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 bi_start = bufpos_to_bytind (buf, start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 bi_end = bufpos_to_bytind (buf, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 SET_BOTH_BUF_BEGV (buf, start, bi_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 SET_BOTH_BUF_ZV (buf, end, bi_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 if (BUF_PT (buf) < start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 BUF_SET_PT (buf, start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 if (BUF_PT (buf) > end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 BUF_SET_PT (buf, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 MARK_CLIP_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 /* Changing the buffer bounds invalidates any recorded current column. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 invalidate_current_column ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 save_restriction_save (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 Lisp_Object bottom, top;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 /* Note: I tried using markers here, but it does not win
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 because insertion at the end of the saved region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 does not advance mh and is considered "outside" the saved region. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 bottom = make_int (BUF_BEGV (current_buffer) - BUF_BEG (current_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 top = make_int (BUF_Z (current_buffer) - BUF_ZV (current_buffer));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 return noseeum_cons (Fcurrent_buffer (), noseeum_cons (bottom, top));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 save_restriction_restore (Lisp_Object data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 struct buffer *buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 Charcount newhead, newtail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 Lisp_Object tem;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 int local_clip_changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 buf = XBUFFER (Fcar (data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 if (!BUFFER_LIVE_P (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 /* someone could have killed the buffer in the meantime ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 tem = Fcdr (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 newhead = XINT (Fcar (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 newtail = XINT (Fcdr (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 while (CONSP (data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 struct Lisp_Cons *victim = XCONS (data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 data = victim->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 free_cons (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 if (newhead + newtail > BUF_Z (buf) - BUF_BEG (buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 newhead = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 newtail = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 Bufpos start, end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 Bytind bi_start, bi_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 start = BUF_BEG (buf) + newhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 end = BUF_Z (buf) - newtail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 bi_start = bufpos_to_bytind (buf, start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 bi_end = bufpos_to_bytind (buf, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 if (BUF_BEGV (buf) != start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 local_clip_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 SET_BOTH_BUF_BEGV (buf, start, bi_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 if (BUF_ZV (buf) != end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 local_clip_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 SET_BOTH_BUF_ZV (buf, end, bi_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 if (local_clip_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 MARK_CLIP_CHANGED;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 /* If point is outside the new visible range, move it inside. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 BUF_SET_PT (buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 bufpos_clip_to_bounds (BUF_BEGV (buf),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 BUF_PT (buf),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 BUF_ZV (buf)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 Execute BODY, saving and restoring current buffer's restrictions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 The buffer's restrictions make parts of the beginning and end invisible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 \(They are set up with `narrow-to-region' and eliminated with `widen'.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 This special form, `save-restriction', saves the current buffer's restrictions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 when it is entered, and restores them when it is exited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 So any `narrow-to-region' within BODY lasts only until the end of the form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 The old restrictions settings are restored
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 even in case of abnormal exit (throw or error).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 The value returned is the value of the last form in BODY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 `save-restriction' can get confused if, within the BODY, you widen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 and then make changes outside the area within the saved restrictions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 Note: if you are using both `save-excursion' and `save-restriction',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 use `save-excursion' outermost:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (save-excursion (save-restriction ...))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 (body)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 Lisp_Object body;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 /* This function can GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 record_unwind_protect (save_restriction_restore, save_restriction_save ());
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 return unbind_to (speccount, Fprogn (body));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 DEFUN ("format", Fformat, Sformat, 1, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 Format a string out of a control-string and arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 The first argument is a control string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 The other arguments are substituted into it to make the result, a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 It may contain %-sequences meaning to substitute the next argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 %s means print all objects as-is, using `princ'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 %S means print all objects as s-expressions, using `prin1'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 %d or %i means print as an integer in decimal (%o octal, %x lowercase hex,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 %X uppercase hex).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 %c means print as a single character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 %f means print as a floating-point number in fixed notation (e.g. 785.200).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 %e or %E means print as a floating-point number in scientific notation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 (e.g. 7.85200e+03).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 %g or %G means print as a floating-point number in \"pretty format\";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 depending on the number, either %f or %e/%E format will be used, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 trailing zeroes are removed from the fractional part.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 The argument used for all but %s and %S must be a number. It will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 converted to an integer or a floating-point number as necessary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 %$ means reposition to read a specific numbered argument; for example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 %3$s would apply the `%s' to the third argument after the control string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 and the next format directive would use the fourth argument, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 following one the fifth argument, etc. (There must be a positive integer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 between the % and the $).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 Zero or more of the flag characters `-', `+', ` ', `0', and `#' may be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 specified between the optional repositioning spec and the conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 character; see below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 An optional minimum field width may be specified after any flag characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 and before the conversion character; it specifies the minimum number of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 characters that the converted argument will take up. Padding will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 added on the left (or on the right, if the `-' flag is specified), as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 necessary. Padding is done with spaces, or with zeroes if the `0' flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 is specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 An optional period character and precision may be specified after any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 minimum field width. It specifies the minimum number of digits to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 appear in %d, %i, %o, %x, and %X conversions (the number is padded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 on the left with zeroes as necessary); the number of digits printed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 after the decimal point for %f, %e, and %E conversions; the number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 of significant digits printed in %g and %G conversions; and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 maximum number of non-padding characters printed in %s and %S
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 conversions. The default precision for floating-point conversions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 is six.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 The ` ' and `+' flags mean prefix non-negative numbers with a space or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 plus sign, respectively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 The `#' flag means print numbers in an alternate, more verbose format:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 octal numbers begin with zero; hex numbers begin with a 0x or 0X;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 a decimal point is printed in %f, %e, and %E conversions even if no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 numbers are printed after it; and trailing zeroes are not omitted in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 %g and %G conversions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 Use %% to put a single % into the output.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 /* It should not be necessary to GCPRO ARGS, because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 the caller in the interpreter should take care of that. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 CHECK_STRING (args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 return emacs_doprnt_string_lisp (0, args[0], 0, nargs - 1, args + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 3, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 Return t if two characters match, optionally ignoring case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 Both arguments must be characters (i.e. integers).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 Case is ignored if `case-fold-search' is non-nil in BUFFER.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 If BUFFER is nil, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 (c1, c2, buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 Lisp_Object c1, c2, buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 Emchar x1, x2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 struct buffer *buf = decode_buffer (buffer, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 CHECK_CHAR_COERCE_INT (c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 CHECK_CHAR_COERCE_INT (c2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 x1 = XCHAR (c1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 x2 = XCHAR (c2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 if (!NILP (buf->case_fold_search)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 ? DOWNCASE (buf, x1) == DOWNCASE (buf, x2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 : x1 == x2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 return Qt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 #if 0 /* Undebugged FSFmacs code */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 /* Transpose the markers in two regions of the current buffer, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 adjust the ones between them if necessary (i.e.: if the regions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 differ in size).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 Traverses the entire marker list of the buffer to do so, adding an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 appropriate amount to some, subtracting from some, and leaving the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 rest untouched. Most of this is copied from adjust_markers in insdel.c.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 It's the caller's job to see that (start1 <= end1 <= start2 <= end2). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 transpose_markers (Bufpos start1, Bufpos end1, Bufpos start2, Bufpos end2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 Charcount amt1, amt2, diff;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 Bufpos mpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 Lisp_Object marker;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 struct buffer *buf = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 /* Update point as if it were a marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 if (BUF_PT (buf) < start1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 else if (BUF_PT (buf) < end1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 BUF_SET_PT (buf, BUF_PT (buf) + (end2 - end1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 else if (BUF_PT (buf) < start2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 BUF_SET_PT (buf, BUF_PT (buf) + (end2 - start2) - (end1 - start1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 else if (BUF_PT (buf) < end2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 BUF_SET_PT (buf, BUF_PT (buf) - (start2 - start1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 /* We used to adjust the endpoints here to account for the gap, but that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 isn't good enough. Even if we assume the caller has tried to move the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 gap out of our way, it might still be at start1 exactly, for example;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 and that places it `inside' the interval, for our purposes. The amount
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 of adjustment is nontrivial if there's a `denormalized' marker whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 the dirty work to Fmarker_position, below. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 /* The difference between the region's lengths */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 diff = (end2 - start2) - (end1 - start1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 /* For shifting each marker in a region by the length of the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 * region plus the distance between the regions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 amt1 = (end2 - start2) + (start2 - end1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 amt2 = (end1 - start1) + (start2 - end1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 for (marker = BUF_MARKERS (buf); !NILP (marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 marker = XMARKER (marker)->chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 mpos = marker_position (marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 if (mpos >= start1 && mpos < end2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 if (mpos < end1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 mpos += amt1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 else if (mpos < start2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 mpos += diff;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 mpos -= amt2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 set_marker_position (marker, mpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 Transpose region START1 to END1 with START2 to END2.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 The regions may not be overlapping, because the size of the buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 never changed in a transposition.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 Optional fifth arg LEAVE_MARKERS, if non-nil, means don't transpose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 any markers that happen to be located in the regions. (#### BUG: currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 this function always acts as if LEAVE_MARKERS is non-nil.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 Transposing beyond buffer boundaries is an error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 (startr1, endr1, startr2, endr2, leave_markers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 Lisp_Object startr1, endr1, startr2, endr2, leave_markers;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 Bufpos start1, end1, start2, end2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 Charcount len1, len2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 Lisp_Object string1, string2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 struct buffer *buf = current_buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 get_buffer_range_char (buf, startr1, endr1, &start1, &end1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 get_buffer_range_char (buf, startr2, endr2, &start2, &end2, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 len1 = end1 - start1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 len2 = end2 - start2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 if (start2 < end1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 error ("transposed regions not properly ordered");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 else if (start1 == end1 || start2 == end2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 error ("transposed region may not be of length 0");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 string1 = make_string_from_buffer (buf, start1, len1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 string2 = make_string_from_buffer (buf, start2, len2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 buffer_delete_range (buf, start2, end2, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 buffer_insert_lisp_string_1 (buf, start2, string1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 buffer_delete_range (buf, start1, end1, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 buffer_insert_lisp_string_1 (buf, start1, string2, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 /* In FSFmacs there is a whole bunch of really ugly code here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 to attempt to transpose the regions without using up any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 extra memory. Although the intent may be good, the result
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 was highly bogus. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 /* initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 syms_of_editfns (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 defsymbol (&Qpoint, "point");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 defsymbol (&Qmark, "mark");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 defsymbol (&Qregion_beginning, "region-beginning");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 defsymbol (&Qregion_end, "region-end");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 defsymbol (&Qformat, "format");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 defsubr (&Schar_equal);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 defsubr (&Sgoto_char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 defsubr (&Sstring_to_char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 defsubr (&Schar_to_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 defsubr (&Sbuffer_substring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 defsubr (&Spoint_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 defsubr (&Smark_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 defsubr (&Spoint);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 defsubr (&Sregion_beginning);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 defsubr (&Sregion_end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 defsubr (&Ssave_excursion);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 defsubr (&Sbufsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 defsubr (&Spoint_max);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 defsubr (&Spoint_min);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 defsubr (&Spoint_min_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 defsubr (&Spoint_max_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 defsubr (&Sbobp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 defsubr (&Seobp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 defsubr (&Sbolp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 defsubr (&Seolp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 defsubr (&Sfollowing_char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 defsubr (&Spreceding_char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 defsubr (&Schar_after);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 defsubr (&Sinsert);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 defsubr (&Sinsert_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 defsubr (&Sinsert_before_markers);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 defsubr (&Sinsert_char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 defsubr (&Suser_login_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 defsubr (&Suser_real_login_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 defsubr (&Suser_uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 defsubr (&Suser_real_uid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 defsubr (&Suser_full_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 defsubr (&Semacs_pid);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 defsubr (&Scurrent_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 defsubr (&Scurrent_process_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 defsubr (&Sformat_time_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 defsubr (&Sdecode_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 defsubr (&Sencode_time);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 defsubr (&Scurrent_time_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 defsubr (&Scurrent_time_zone);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 defsubr (&Sset_time_zone_rule);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 defsubr (&Ssystem_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 defsubr (&Sformat);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 defsubr (&Sinsert_buffer_substring);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 defsubr (&Scompare_buffer_substrings);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 defsubr (&Ssubst_char_in_region);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 defsubr (&Stranslate_region);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 defsubr (&Sdelete_region);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 defsubr (&Swiden);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 defsubr (&Snarrow_to_region);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 defsubr (&Ssave_restriction);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 defsubr (&Stranspose_regions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 defsymbol (&Qzmacs_update_region, "zmacs-update-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 defsymbol (&Qzmacs_deactivate_region, "zmacs-deactivate-region");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 defsymbol (&Qzmacs_region_buffer, "zmacs-region-buffer");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 vars_of_editfns (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 staticpro (&Vsystem_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 staticpro (&Vuser_full_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 staticpro (&Vuser_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 staticpro (&Vuser_real_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 DEFVAR_BOOL ("zmacs-regions", &zmacs_regions /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 *Whether LISPM-style active regions should be used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 This means that commands which operate on the region (the area between the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 point and the mark) will only work while the region is in the ``active''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 state, which is indicated by highlighting. Executing most commands causes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 the region to not be in the active state, so (for example) \\[kill-region] will only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 work immediately after activating the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 More specifically:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 - Commands which operate on the region only work if the region is active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 - Only a very small set of commands cause the region to become active:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 Those commands whose semantics are to mark an area, like mark-defun.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 - The region is deactivated after each command that is executed, except that:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 - \"Motion\" commands do not change whether the region is active or not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 set-mark-command (C-SPC) pushes a mark and activates the region. Moving the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 cursor with normal motion commands (C-n, C-p, etc) will cause the region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 between point and the recently-pushed mark to be highlighted. It will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 remain highlighted until some non-motion comand is executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 exchange-point-and-mark (\\[exchange-point-and-mark]) activates the region. So if you mark a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 region and execute a command that operates on it, you can reactivate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 same region with \\[exchange-point-and-mark] (or perhaps \\[exchange-point-and-mark] \\[exchange-point-and-mark]) to operate on it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 Generally, commands which push marks as a means of navigation (like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 beginning-of-buffer and end-of-buffer (M-< and M->)) do not activate the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 region. But commands which push marks as a means of marking an area of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 text (like mark-defun (\\[mark-defun]), mark-word (\\[mark-word]) or mark-whole-buffer (\\[mark-whole-buffer]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 do activate the region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 The way the command loop actually works with regard to deactivating the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 region is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 - If the variable `zmacs-region-stays' has been set to t during the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 just executed, the region is left alone (this is how the motion commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 make the region stay around; see the `_' flag in the `interactive'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 specification). `zmacs-region-stays' is reset to nil before each command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 is executed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 - If the function `zmacs-activate-region' has been called during the command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 just executed, the region is left alone. Very few functions should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 actually call this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 - Otherwise, if the region is active, the region is deactivated and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 the `zmacs-deactivate-region-hook' is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 /* Zmacs style active regions are now ON by default */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 zmacs_regions = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 DEFVAR_BOOL ("zmacs-region-active-p", &zmacs_region_active_p /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 Do not alter this. It is for internal use only.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 zmacs_region_active_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 DEFVAR_BOOL ("zmacs-region-stays", &zmacs_region_stays /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 Commands which do not wish to affect whether the region is currently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 highlighted should set this to t. Normally, the region is turned off after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 executing each command that did not explicitly turn it on with the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 zmacs-activate-region. Setting this to true lets a command be non-intrusive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 See the variable `zmacs-regions'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 zmacs_region_stays = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 DEFVAR_BOOL ("atomic-extent-goto-char-p", &atomic_extent_goto_char_p /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 Do not use this -- it will be going away soon.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 Indicates if `goto-char' has just been run. This information is allegedly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 needed to get the desired behavior for atomic extents and unfortunately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 is not available by any other means.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 atomic_extent_goto_char_p = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 }