emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r114056: * lisp/progmodes/sh-script.el (sh-builtins)


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114056: * lisp/progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
Date: Thu, 29 Aug 2013 01:02:49 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114056
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2013-08-28 21:02:46 -0400
message:
  * lisp/progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/sh-script.el    shscript.el-20091113204419-o5vbwnq5f7feedwu-727
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-08-28 23:32:25 +0000
+++ b/lisp/ChangeLog    2013-08-29 01:02:46 +0000
@@ -1,3 +1,7 @@
+2013-08-29  Glenn Morris  <address@hidden>
+
+       * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
+
 2013-08-28  Glenn Morris  <address@hidden>
 
        * progmodes/antlr-mode.el: No need to require cc-mode twice.

=== modified file 'lisp/progmodes/sh-script.el'
--- a/lisp/progmodes/sh-script.el       2013-08-21 01:16:27 +0000
+++ b/lisp/progmodes/sh-script.el       2013-08-29 01:02:46 +0000
@@ -1,7 +1,6 @@
 ;;; sh-script.el --- shell-script editing commands for Emacs
 
-;; Copyright (C) 1993-1997, 1999, 2001-2013 Free Software Foundation,
-;; Inc.
+;; Copyright (C) 1993-1997, 1999, 2001-2013 Free Software Foundation, Inc.
 
 ;; Author: Daniel Pfeiffer <address@hidden>
 ;; Version: 2.0f
@@ -673,7 +672,9 @@
          "." "alias" "bg" "bind" "builtin" "caller" "compgen" "complete"
           "declare" "dirs" "disown" "enable" "fc" "fg" "help" "history"
           "jobs" "kill" "let" "local" "popd" "printf" "pushd" "shopt"
-          "source" "suspend" "typeset" "unalias")
+          "source" "suspend" "typeset" "unalias"
+          ;; bash4
+          "mapfile" "readarray")
 
     ;; The next entry is only used for defining the others
     (bourne sh-append shell
@@ -737,6 +738,7 @@
   :type '(repeat (cons (symbol :tag "Shell")
                       (choice (repeat string)
                               (sexp :format "Evaluate: %v"))))
+  :version "24.4"                       ; bash4 additions
   :group 'sh-script)
 
 


reply via email to

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