emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog progmodes/ada-mode.el


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs/lisp ChangeLog progmodes/ada-mode.el
Date: Sun, 04 Jan 2009 19:39:16 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      09/01/04 19:39:16

Modified files:
        lisp           : ChangeLog 
        lisp/progmodes : ada-mode.el 

Log message:
        * progmodes/ada-mode.el (ada-mode): Simplify doc string.
          (ada-get-indent-paramlist): Use ada-broken-indent instead of
          hard-coded 0.
          (ada-get-indent-loop): Fix list access bug.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15038&r2=1.15039
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/progmodes/ada-mode.el?cvsroot=emacs&r1=1.99&r2=1.100

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15038
retrieving revision 1.15039
diff -u -b -r1.15038 -r1.15039
--- ChangeLog   4 Jan 2009 19:32:40 -0000       1.15038
+++ ChangeLog   4 Jan 2009 19:39:12 -0000       1.15039
@@ -1,3 +1,10 @@
+2009-01-04  Stephen Leake  <address@hidden>
+
+       * progmodes/ada-mode.el (ada-mode): Simplify doc string.
+       (ada-get-indent-paramlist): Use ada-broken-indent instead of
+       hard-coded 0.
+       (ada-get-indent-loop): Fix list access bug.
+
 2009-01-04  Juanma Barranquero  <address@hidden>
 
        * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode)

Index: progmodes/ada-mode.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/progmodes/ada-mode.el,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -b -r1.99 -r1.100
--- progmodes/ada-mode.el       12 Oct 2008 23:06:32 -0000      1.99
+++ progmodes/ada-mode.el       4 Jan 2009 19:39:15 -0000       1.100
@@ -1,7 +1,7 @@
 ;;; ada-mode.el --- major-mode for editing Ada sources
 
 ;; Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-;;               2005, 2006, 2007, 2008  Free Software Foundation, Inc.
+;;               2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
 
 ;; Author: Rolf Ebert      <address@hidden>
 ;;      Markus Heritsch <address@hidden>
@@ -1106,48 +1106,7 @@
 
 ;;;###autoload
 (defun ada-mode ()
-  "Ada mode is the major mode for editing Ada code.
-
-Bindings are as follows: (Note: 'LFD' is control-j.)
-\\{ada-mode-map}
-
- Indent line                                          '\\[ada-tab]'
- Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
-
- Re-format the parameter-list point is in             
'\\[ada-format-paramlist]'
- Indent all lines in region                           '\\[ada-indent-region]'
-
- Adjust case of identifiers and keywords in region    
'\\[ada-adjust-case-region]'
- Adjust case of identifiers and keywords in buffer    
'\\[ada-adjust-case-buffer]'
-
- Fill comment paragraph, justify and append postfix   '\\[fill-paragraph]'
-
- Next func/proc/task '\\[ada-next-procedure]'  Previous func/proc/task 
'\\[ada-previous-procedure]'
- Next package        '\\[ada-next-package]'  Previous package        
'\\[ada-previous-package]'
-
- Goto matching start of current 'end ...;'            '\\[ada-move-to-start]'
- Goto end of current block                            '\\[ada-move-to-end]'
-
-Comments are handled using standard GNU Emacs conventions, including:
- Start a comment                                      '\\[indent-for-comment]'
- Comment region                                       '\\[comment-region]'
- Uncomment region                                     
'\\[ada-uncomment-region]'
- Continue comment on next line                        
'\\[indent-new-comment-line]'
-
-If you use imenu.el:
- Display index-menu of functions and procedures       '\\[imenu]'
-
-If you use find-file.el:
- Switch to other file (Body <-> Spec)                 '\\[ff-find-other-file]'
-                                                  or 
'\\[ff-mouse-find-other-file]
- Switch to other file in other window                 '\\[ada-ff-other-window]'
-                                                  or 
'\\[ff-mouse-find-other-file-other-window]
- If you use this function in a spec and no body is available, it gets created 
with body stubs.
-
-If you use ada-xref.el:
- Goto declaration:          '\\[ada-point-and-xref]' on the identifier
-                        or '\\[ada-goto-declaration]' with point on the 
identifier
- Complete identifier:       '\\[ada-complete-identifier]'."
+  "Ada mode is the major mode for editing Ada code."
 
   (interactive)
   (kill-all-local-variables)
@@ -2822,7 +2781,7 @@
      (t
       (goto-char (cdr (ada-search-ignore-string-comment "(\\|;" t nil t)))
       (ada-goto-next-non-ws)
-      (list (point) 0)))))
+      (list (point) 'ada-broken-indent)))))
 
 (defun ada-get-indent-end (orgpoint)
   "Calculate the indentation when point is just before an end statement.
@@ -3191,7 +3150,7 @@
       (setq pos (ada-get-indent-block-start orgpoint))
       (if (equal label 0)
          pos
-       (list (+ (car pos) label) (cdr pos))))
+       (list (+ (car pos) label) (cadr pos))))
 
      ;;
      ;; 'for'- loop (or also a for ... use statement)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]