summaryrefslogtreecommitdiff
path: root/lisp/progmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/compile.el6
-rw-r--r--lisp/progmodes/perl-mode.el2
-rw-r--r--lisp/progmodes/python.el22
-rw-r--r--lisp/progmodes/sh-script.el2
-rw-r--r--lisp/progmodes/which-func.el4
5 files changed, 18 insertions, 18 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index c008e1c4da3..21a323d8b45 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -684,13 +684,13 @@ starting the compilation process."
(t (:inverse-video t :weight bold)))
"Face for Compilation mode's \"error\" mode line indicator."
:group 'compilation
- :version "24.2")
+ :version "24.3")
(defface compilation-mode-line-run
'((t :inherit compilation-warning))
"Face for Compilation mode's \"running\" mode line indicator."
:group 'compilation
- :version "24.2")
+ :version "24.3")
(defface compilation-mode-line-exit
'((default :inherit compilation-info)
@@ -700,7 +700,7 @@ starting the compilation process."
(t (:weight bold)))
"Face for Compilation mode's \"exit\" mode line indicator."
:group 'compilation
- :version "24.2")
+ :version "24.3")
(defface compilation-line-number
'((t :inherit font-lock-keyword-face))
diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el
index 848b92868e7..e13b67e596d 100644
--- a/lisp/progmodes/perl-mode.el
+++ b/lisp/progmodes/perl-mode.el
@@ -509,7 +509,7 @@ If nil, continued arguments are aligned with the first argument."
"Non-nil means that non-block ()-, {}- and []-groups are indented as blocks.
The closing bracket is aligned with the line of the opening bracket,
not the contents of the brackets."
- :version "24.2"
+ :version "24.3"
:type 'boolean
:group 'perl)
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 90908c80f1b..601850ed0fb 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -378,14 +378,14 @@ The type returned can be `comment', `string' or `paren'."
(nth 8 (syntax-ppss)))
(define-obsolete-function-alias
- 'python-info-ppss-context #'python-syntax-context "24.2")
+ 'python-info-ppss-context #'python-syntax-context "24.3")
(define-obsolete-function-alias
- 'python-info-ppss-context-type #'python-syntax-context-type "24.2")
+ 'python-info-ppss-context-type #'python-syntax-context-type "24.3")
(define-obsolete-function-alias
'python-info-ppss-comment-or-string-p
- #'python-syntax-comment-or-string-p "24.2")
+ #'python-syntax-comment-or-string-p "24.3")
(defvar python-font-lock-keywords
;; Keywords
@@ -588,10 +588,10 @@ It makes underscores and dots word constituent chars.")
:safe 'booleanp)
(define-obsolete-variable-alias
- 'python-indent 'python-indent-offset "24.2")
+ 'python-indent 'python-indent-offset "24.3")
(define-obsolete-variable-alias
- 'python-guess-indent 'python-indent-guess-indent-offset "24.2")
+ 'python-guess-indent 'python-indent-guess-indent-offset "24.3")
(defvar python-indent-current-level 0
"Current indentation level `python-indent-line-function' is using.")
@@ -1808,13 +1808,13 @@ there for compatibility with CEDET.")
(get-buffer-process proc-buffer-name)))
(define-obsolete-function-alias
- 'python-proc 'python-shell-internal-get-or-create-process "24.2")
+ 'python-proc 'python-shell-internal-get-or-create-process "24.3")
(define-obsolete-variable-alias
- 'python-buffer 'python-shell-internal-buffer "24.2")
+ 'python-buffer 'python-shell-internal-buffer "24.3")
(define-obsolete-variable-alias
- 'python-preoutput-result 'python-shell-internal-last-output "24.2")
+ 'python-preoutput-result 'python-shell-internal-last-output "24.3")
(defun python-shell-send-string (string &optional process msg)
"Send STRING to inferior Python PROCESS.
@@ -1876,10 +1876,10 @@ Returns the output. See `python-shell-send-string-no-output'."
(python-shell-internal-get-or-create-process) nil)))
(define-obsolete-function-alias
- 'python-send-receive 'python-shell-internal-send-string "24.2")
+ 'python-send-receive 'python-shell-internal-send-string "24.3")
(define-obsolete-function-alias
- 'python-send-string 'python-shell-internal-send-string "24.2")
+ 'python-send-string 'python-shell-internal-send-string "24.3")
(defun python-shell-send-region (start end)
"Send the region delimited by START and END to inferior Python process."
@@ -2369,7 +2369,7 @@ the if condition."
:safe 'booleanp)
(define-obsolete-variable-alias
- 'python-use-skeletons 'python-skeleton-autoinsert "24.2")
+ 'python-use-skeletons 'python-skeleton-autoinsert "24.3")
(defvar python-skeleton-available '()
"Internal list of available skeletons.")
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index a713539cd8e..a6089aabb04 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -4076,7 +4076,7 @@ The document is bounded by `sh-here-document-word'."
(self-insert-command (prefix-numeric-value arg))
(or arg (sh--maybe-here-document)))
(make-obsolete 'sh--maybe-here-document
- 'sh-electric-here-document-mode "24.2")
+ 'sh-electric-here-document-mode "24.3")
(defun sh--maybe-here-document ()
(or (not (looking-back "[^<]<<"))
diff --git a/lisp/progmodes/which-func.el b/lisp/progmodes/which-func.el
index 02948b35fe0..02340425dfa 100644
--- a/lisp/progmodes/which-func.el
+++ b/lisp/progmodes/which-func.el
@@ -80,7 +80,7 @@
For other modes it is disabled. If this is equal to t,
then Which Function mode is enabled in any major mode that supports it."
:group 'which-func
- :version "24.2" ; explicit list -> t
+ :version "24.3" ; explicit list -> t
:type '(choice (const :tag "All modes" t)
(repeat (symbol :tag "Major mode"))))
@@ -150,7 +150,7 @@ mouse-2: toggle rest visibility\n\
mouse-3: go to end")
"]")
"Format for displaying the function in the mode line."
- :version "24.2" ; added mouse-face
+ :version "24.2" ; added mouse-face; 24point2 is correct
:group 'which-func
:type 'sexp)
;;;###autoload (put 'which-func-format 'risky-local-variable t)