aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorStefan Monnier2012-07-17 07:52:00 -0400
committerStefan Monnier2012-07-17 07:52:00 -0400
commit4dc7c8d5795458e89d19b59f64760e155c2cd70b (patch)
tree2eb1ef73d69102f0ebee4e39056078adcdd49529 /admin
parent2143fa32671374cdef26fdb24355bf690728a344 (diff)
parentfbf31a9c2c08c86a7ab490cb7b920245b829a61d (diff)
downloademacs-4dc7c8d5795458e89d19b59f64760e155c2cd70b.tar.gz
emacs-4dc7c8d5795458e89d19b59f64760e155c2cd70b.zip
Merge from emacs-24
Diffstat (limited to 'admin')
-rw-r--r--admin/CPP-DEFINES1
-rw-r--r--admin/ChangeLog7
-rw-r--r--admin/bzrmerge.el8
3 files changed, 11 insertions, 5 deletions
diff --git a/admin/CPP-DEFINES b/admin/CPP-DEFINES
index 73c4ed2eb4d..9fc7ce3e33d 100644
--- a/admin/CPP-DEFINES
+++ b/admin/CPP-DEFINES
@@ -95,7 +95,6 @@ EMACS_CONFIGURATION
95EMACS_CONFIG_OPTIONS 95EMACS_CONFIG_OPTIONS
96EMACS_INT 96EMACS_INT
97EMACS_UINT 97EMACS_UINT
98FILE_SYSTEM_CASE
99FLOAT_CHECK_DOMAIN 98FLOAT_CHECK_DOMAIN
100GC_LISP_OBJECT_ALIGNMENT 99GC_LISP_OBJECT_ALIGNMENT
101GC_MARK_SECONDARY_STACK 100GC_MARK_SECONDARY_STACK
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 1aa086cd52e..0d059714788 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,3 +1,10 @@
12012-07-17 Eli Zaretskii <eliz@gnu.org>
2
3 * CPP-DEFINES: Remove FILE_SYSTEM_CASE.
4
52012-07-17 Chong Yidong <cyd@gnu.org>
6
7 * Version 24.1 released.
12012-07-11 Paul Eggert <eggert@cs.ucla.edu> 82012-07-11 Paul Eggert <eggert@cs.ucla.edu>
2 9
3 Assume mkdir, perror, rename, rmdir, strerror. 10 Assume mkdir, perror, rename, rmdir, strerror.
diff --git a/admin/bzrmerge.el b/admin/bzrmerge.el
index 4f5cee14737..977e95860e2 100644
--- a/admin/bzrmerge.el
+++ b/admin/bzrmerge.el
@@ -138,17 +138,17 @@ Type `y' to skip this revision,
138`N' to include it and go on to the next revision, 138`N' to include it and go on to the next revision,
139`n' to not skip, but continue to search this log entry for skip regexps, 139`n' to not skip, but continue to search this log entry for skip regexps,
140`q' to quit merging.")) 140`q' to quit merging."))
141 (case (save-excursion 141 (pcase (save-excursion
142 (read-char-choice 142 (read-char-choice
143 (format "%s: Skip (y/n/N/q/%s)? " str 143 (format "%s: Skip (y/n/N/q/%s)? " str
144 (key-description (vector help-char))) 144 (key-description (vector help-char)))
145 '(?y ?n ?N ?q))) 145 '(?y ?n ?N ?q)))
146 (?y (setq skip t)) 146 (`?y (setq skip t))
147 (?q (keyboard-quit)) 147 (`?q (keyboard-quit))
148 ;; A single log entry can match skip-regexp multiple 148 ;; A single log entry can match skip-regexp multiple
149 ;; times. If you are sure you don't want to skip it, 149 ;; times. If you are sure you don't want to skip it,
150 ;; you don't want to be asked multiple times. 150 ;; you don't want to be asked multiple times.
151 (?N (setq skip 'no)))))) 151 (`?N (setq skip 'no))))))
152 (if (eq skip t) 152 (if (eq skip t)
153 (push revno skipped) 153 (push revno skipped)
154 (push revno revnos))))) 154 (push revno revnos)))))