1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-10 15:56:18 +00:00

Revert 2010-05-25T15:54:53Z!juri@jurta.org; regenerate release logs.

* lisp/progmodes/cc-cmds.el (c-beginning-of-statement): Revert
2011-01-31 change.
This commit is contained in:
Chong Yidong 2011-03-07 00:20:23 -05:00
parent 22770c84d5
commit c6678f2916
24 changed files with 39 additions and 43 deletions

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,7 +1,12 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* progmodes/cc-cmds.el (c-beginning-of-statement): Revert
2011-01-31 change.
2011-02-26 Eli Zaretskii <eliz@gnu.org>
* international/mule-cmds.el (set-default-coding-systems): Use the

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -2458,15 +2458,13 @@ function does not require the declaration to contain a brace block."
(goto-char last)
(throw 'done '(nil . nil)))
;; Stop if we encounter a preprocessor line. Continue if we
;; hit a naked #
((and c-opt-cpp-prefix
(not macro-end)
;; Stop if we encounter a preprocessor line.
((and (not macro-end)
(eq (char-after) ?#)
(= (point) (c-point 'boi)))
(if (= (point) here) ; Not a macro, therefore naked #.
(forward-char)
(throw 'done '(t . macro-boundary))))
(goto-char last)
;(throw 'done (cons (eq (point) here) 'macro-boundary))) ; Changed 2003/3/26
(throw 'done '(t . macro-boundary)))
;; Stop after a ';', '}', or "};"
((looking-at ";\\|};?")
@ -2582,19 +2580,12 @@ be more \"DWIM:ey\"."
;; Are we about to move backwards into or out of a
;; preprocessor command? If so, locate its beginning.
(when (eq (cdr res) 'macro-boundary)
(setq macro-fence
(save-excursion
(if macro-fence
(progn
(end-of-line)
(and (not (eobp))
(progn (c-skip-ws-forward)
(c-beginning-of-macro))
(progn (c-end-of-macro)
(point))))
(and (not (eobp))
(c-beginning-of-macro)
(progn (c-end-of-macro) (point)))))))
(save-excursion
(beginning-of-line)
(setq macro-fence
(and (not (bobp))
(progn (c-skip-ws-backward) (c-beginning-of-macro))
(point)))))
;; Are we about to move backwards into a literal?
(when (memq (cdr res) '(macro-boundary literal))
(setq range (c-ascertain-preceding-literal)))

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.

View File

@ -1,4 +1,4 @@
2011-02-28 Chong Yidong <cyd@stupidchicken.com>
2011-03-07 Chong Yidong <cyd@stupidchicken.com>
* Version 23.3 released.