/* Size of the file. */
info->statb.st_size = AAsset_getLength (asset);
+ /* If the installation date can be ascertained, return that as
+ the file's modification time. */
+
+ if (timespec_valid_p (emacs_installation_time))
+ {
+#ifdef STAT_TIMESPEC
+ STAT_TIMESPEC (&info->statb, st_mtim) = emacs_installation_time;
+#else /* !STAT_TIMESPEC */
+ /* Headers supplied by the NDK r10b contain a `struct stat'
+ without POSIX fields for nano-second timestamps. */
+ info->statb.st_mtime = emacs_installation_time.tv_sec;
+ info->statb.st_mtime_nsec = emacs_installation_time.tv_nsec;
+#endif /* STAT_TIMESPEC */
+ }
+
/* Chain info onto afs_file_descriptors. */
afs_file_descriptors = info;
statb->st_uid = 0;
statb->st_gid = 0;
+ /* If the installation date can be ascertained, return that as the
+ file's modification time. */
+
+ if (timespec_valid_p (emacs_installation_time))
+ {
+#ifdef STAT_TIMESPEC
+ STAT_TIMESPEC (statb, st_mtim) = emacs_installation_time;
+#else /* !STAT_TIMESPEC */
+ /* Headers supplied by the NDK r10b contain a `struct stat'
+ without POSIX fields for nano-second timestamps. */
+ statb->st_mtime = emacs_installation_time.tv_sec;
+ statb->st_mtime_nsec = emacs_installation_time.tv_nsec;
+#endif /* STAT_TIMESPEC */
+ }
+
/* Size of the file. */
statb->st_size = AAsset_getLength (asset.asset);
return 0;
/* See if keysym should make Emacs quit. */
- if (keysym == dpyinfo->quit_keysym
- && (xkey.time - dpyinfo->quit_keysym_time
- <= 350))
+ if (dpyinfo->quit_keysym)
{
- Vquit_flag = Qt;
- goto done_keysym;
- }
+ if (keysym == dpyinfo->quit_keysym
+ && (xkey.time - dpyinfo->quit_keysym_time
+ <= 350))
+ {
+ Vquit_flag = Qt;
+ goto done_keysym;
+ }
- if (keysym == dpyinfo->quit_keysym)
- {
- /* Otherwise, set the last time that keysym was
- pressed. */
- dpyinfo->quit_keysym_time = xkey.time;
- goto done_keysym;
+ if (keysym == dpyinfo->quit_keysym)
+ {
+ /* Otherwise, set the last time that keysym was
+ pressed. */
+ dpyinfo->quit_keysym_time = xkey.time;
+ goto done_keysym;
+ }
}
/* If not using XIM/XIC, and a compose sequence is in progress,
/* See if keysym should make Emacs quit. */
- if (keysym == dpyinfo->quit_keysym
- && (xev->time - dpyinfo->quit_keysym_time
- <= 350))
+ if (dpyinfo->quit_keysym)
{
- Vquit_flag = Qt;
- goto xi_done_keysym;
- }
+ if (keysym == dpyinfo->quit_keysym
+ && (xev->time - dpyinfo->quit_keysym_time
+ <= 350))
+ {
+ Vquit_flag = Qt;
+ goto xi_done_keysym;
+ }
- if (keysym == dpyinfo->quit_keysym)
- {
- /* Otherwise, set the last time that keysym was
- pressed. */
- dpyinfo->quit_keysym_time = xev->time;
- goto xi_done_keysym;
+ if (keysym == dpyinfo->quit_keysym)
+ {
+ /* Otherwise, set the last time that keysym
+ was pressed. */
+ dpyinfo->quit_keysym_time = xev->time;
+ goto xi_done_keysym;
+ }
}
/* First deal with keysyms which have defined