diff options
author | Alan Mackenzie <acm@muc.de> | 2005-12-02 12:30:36 +0000 |
---|---|---|
committer | Alan Mackenzie <acm@muc.de> | 2005-12-02 12:30:36 +0000 |
commit | 0386b551af726187e2eb674fa2ffdb1cfedaabe8 (patch) | |
tree | c9fbaebac1a286f8da48c085a8476e94f18122d2 /lisp/progmodes/cc-menus.el | |
parent | d60d4cd6ef15e4162e4e0abdddb522b541d30010 (diff) | |
download | emacs-0386b551af726187e2eb674fa2ffdb1cfedaabe8.tar.gz emacs-0386b551af726187e2eb674fa2ffdb1cfedaabe8.tar.bz2 emacs-0386b551af726187e2eb674fa2ffdb1cfedaabe8.zip |
Update CC Mode to release 5.31.
Diffstat (limited to 'lisp/progmodes/cc-menus.el')
-rw-r--r-- | lisp/progmodes/cc-menus.el | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/progmodes/cc-menus.el b/lisp/progmodes/cc-menus.el index 6de4aa8c79c..e11f50c581b 100644 --- a/lisp/progmodes/cc-menus.el +++ b/lisp/progmodes/cc-menus.el @@ -1,6 +1,7 @@ ;;; cc-menus.el --- imenu support for CC Mode -;; Copyright (C) 1985,1987,1992-2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1985,1987,1992-2003, 2004, 2005 Free Software Foundation, +;; Inc. ;; Authors: 1998- Martin Stjernholm ;; 1992-1999 Barry A. Warsaw @@ -24,7 +25,7 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to +;; along with this program; see the file COPYING. If not, write to ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. @@ -240,7 +241,6 @@ Example: - perform: (SEL)aSelector withObject: object1 withObject: object2; /* METHOD */ => -perform:withObject:withObject:withObject: /* selector */" - ;; This function does not do any hidden buffer changes. (let ((return "") ; String to be returned (p 0) ; Current scanning position in METHOD (pmax (length method)) ; @@ -281,7 +281,6 @@ Example: (defun cc-imenu-objc-remove-white-space (str) "Remove all spaces and tabs from STR." - ;; This function does not do any hidden buffer changes. (let ((return "") (p 0) (max (length str)) @@ -296,7 +295,6 @@ Example: (defun cc-imenu-objc-function () "imenu supports for objc-mode." - ;; This function does not do any hidden buffer changes. (let (methodlist clist ;; @@ -415,7 +413,6 @@ Example: (defun cc-imenu-init (mode-generic-expression &optional mode-create-index-function) - ;; This function does not do any hidden buffer changes. (setq imenu-generic-expression mode-generic-expression imenu-case-fold-search nil) (when mode-create-index-function |