From 9796cb5b2f7c4f2ff21979571fa462816ba663b2 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 8 Sep 1997 03:20:49 +0000 Subject: [PATCH] (c-end-of-statement-1): Wrap backward-up-list in a c-safe call so no error results when buffer contains only a comment and point is at eob. (c-inside-bracelist-p): Add a test to the enum list test so that enum in a k&r arg decl doesn't confuse handling of the function body. --- lisp/progmodes/cc-engine.el | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index 5aa24e67fc0..9fd6d372485 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el @@ -7,7 +7,7 @@ ;; 1985 Richard M. Stallman ;; Maintainer: cc-mode-help@python.org ;; Created: 22-Apr-1997 (split from cc-mode.el) -;; Version: 5.16 +;; Version: 5.17 ;; Keywords: c languages oop ;; This file is part of GNU Emacs. @@ -188,13 +188,13 @@ (goto-char end)) (re-search-backward "[;{}]") (forward-char 1)) - (error + (error (let ((beg (point))) - (backward-up-list -1) + (c-safe (backward-up-list -1)) (let ((end (point))) (goto-char beg) - (search-forward ";" end 'move)))))) - + (search-forward ";" end 'move))) + ))) (defun c-crosses-statement-barrier-p (from to) @@ -750,9 +750,11 @@ (save-excursion (goto-char containing-sexp) (forward-sexp -1) - (if (or (looking-at "enum[\t\n ]+") - (progn (forward-sexp -1) - (looking-at "enum[\t\n ]+"))) + (if (and (or (looking-at "enum[\t\n ]+") + (progn (forward-sexp -1) + (looking-at "enum[\t\n ]+"))) + (progn (c-end-of-statement-1) + (> (point) containing-sexp))) (point))) (error nil)) ;; this will pick up array/aggregate init lists, even if they are nested. -- 2.39.2