2020-04-28 21:35:00 +00:00
|
|
|
;;; version.el --- record version number of Emacs -*- lexical-binding:t -*-
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2021-01-01 09:13:56 +00:00
|
|
|
;; Copyright (C) 1985, 1992, 1994-1995, 1999-2021 Free Software
|
2013-01-01 09:11:05 +00:00
|
|
|
;; Foundation, Inc.
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2019-05-25 20:43:06 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1999-10-04 17:15:48 +00:00
|
|
|
;; Keywords: internal
|
2010-08-29 16:17:13 +00:00
|
|
|
;; Package: emacs
|
1999-10-04 17:15:48 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1999-10-04 17:15:48 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1999-10-04 17:15:48 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
1999-10-04 17:15:48 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2012-05-25 18:57:51 +00:00
|
|
|
(defconst emacs-major-version
|
|
|
|
(progn (string-match "^[0-9]+" emacs-version)
|
|
|
|
(string-to-number (match-string 0 emacs-version)))
|
2021-01-19 17:53:42 +00:00
|
|
|
"Major version number of this version of Emacs.")
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2012-05-25 18:57:51 +00:00
|
|
|
(defconst emacs-minor-version
|
|
|
|
(progn (string-match "^[0-9]+\\.\\([0-9]+\\)" emacs-version)
|
|
|
|
(string-to-number (match-string 1 emacs-version)))
|
2021-01-19 17:53:42 +00:00
|
|
|
"Minor version number of this version of Emacs.")
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2016-03-02 18:21:45 +00:00
|
|
|
(defconst emacs-build-system (system-name)
|
|
|
|
"Name of the system on which Emacs was built, or nil if not available.")
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2016-03-02 18:21:45 +00:00
|
|
|
(defconst emacs-build-time (if emacs-build-system (current-time))
|
|
|
|
"Time at which Emacs was dumped out, or nil if not available.")
|
1999-10-04 17:15:48 +00:00
|
|
|
|
2017-02-18 01:15:21 +00:00
|
|
|
(defconst emacs-build-number 1 ; loadup.el may increment this
|
|
|
|
"The build number of this version of Emacs.
|
|
|
|
This is an integer that increments each time Emacs is built in a given
|
|
|
|
directory (without cleaning). This is likely to only be relevant when
|
|
|
|
developing Emacs.")
|
|
|
|
|
2012-05-27 17:31:31 +00:00
|
|
|
(defvar motif-version-string)
|
|
|
|
(defvar gtk-version-string)
|
|
|
|
(defvar ns-version-string)
|
2015-06-06 19:12:06 +00:00
|
|
|
(defvar cairo-version-string)
|
2012-05-27 17:31:31 +00:00
|
|
|
|
2012-05-25 18:57:51 +00:00
|
|
|
(defun emacs-version (&optional here)
|
|
|
|
"Return string describing the version of Emacs that is running.
|
1999-10-04 17:15:48 +00:00
|
|
|
If optional argument HERE is non-nil, insert string at point.
|
|
|
|
Don't use this function in programs to choose actions according
|
|
|
|
to the system configuration; look at `system-configuration' instead."
|
|
|
|
(interactive "P")
|
2003-02-04 12:29:42 +00:00
|
|
|
(let ((version-string
|
2017-02-18 01:15:21 +00:00
|
|
|
(format "GNU Emacs %s (build %s, %s%s%s%s)%s"
|
1999-10-04 17:15:48 +00:00
|
|
|
emacs-version
|
2017-02-18 01:15:21 +00:00
|
|
|
emacs-build-number
|
1999-10-04 17:15:48 +00:00
|
|
|
system-configuration
|
2003-02-04 12:29:42 +00:00
|
|
|
(cond ((featurep 'motif)
|
2001-04-05 13:13:10 +00:00
|
|
|
(concat ", " (substring motif-version-string 4)))
|
2003-08-26 08:46:27 +00:00
|
|
|
((featurep 'gtk)
|
|
|
|
(concat ", GTK+ Version " gtk-version-string))
|
2004-05-13 13:01:01 +00:00
|
|
|
((featurep 'x-toolkit) ", X toolkit")
|
2008-07-23 06:01:21 +00:00
|
|
|
((featurep 'ns)
|
2008-10-22 12:51:29 +00:00
|
|
|
(format ", NS %s" ns-version-string))
|
1999-10-04 17:15:48 +00:00
|
|
|
(t ""))
|
Add cairo drawing.
* configure.ac (with-cairo): New option.
(USE_CAIRO): Default to yes for Gtk+ 3. Add code to test for cairo,
set CAIRO_CFLAGS, CAIRO_LIBS. Add ftcrfonto to FONT_OBJ if cairo.
Output "Does Emacs use cairo?".
* lisp/version.el (emacs-version): Add cairo version.
* src/Makefile.in (CAIRO_CFLAGS, CAIRO_LIBS): New variables.
(FONT_OBJ): Add comment about ftcrfont.
(ALL_CFLAGS): Add CAIRO_CFLAGS.
(LIBES): Add CAIRO_LIBS.
* src/dispextern.h (struct image): Add cr_data for cairo.
(x_cr_init_fringe): Declare.
* src/font.c (syms_of_font): Call syms_of_ftcrfont for cairo.
* src/font.h (ftcrfont_driver, syms_of_ftcrfont): Declare
* src/fringe.c (x_cr_init_fringe): New function name that shares code
with w32_init_fringe.
* src/ftcrfont.c: New font driver for cairo, based on the ftfont driver.
* src/ftfont.c (ftfont_info_size); New global variable.
(ftfont_open2): New extern function almost the same as old ftfont_open,
but takes the font_object as argument.
(ftfont_open): Build font object and call ftfont_open2.
* src/ftfont.h (ftfont_open2, ftfont_info_size): Declare.
* src/gtkutil.c (xg_clear_under_internal_border)
(xg_update_scrollbar_pos, xg_update_horizontal_scrollbar_pos): Only
queue_draw if not cairo. Change args to x_clear_area.
(xg_get_font): Use Qftcr when using cairo, Qxft otherwise.
(xg_page_setup_dialog, xg_get_page_setup, draw_page)
(xg_print_frames_dialog): New functions for printing.
* src/gtkutil.h (xg_page_setup_dialog, xg_get_page_setup)
(xg_print_frames_dialog): Declare.
* src/image.c: Add defined (USE_CAIRO) for PNG.
Add !defined USE_CAIRO for W32 PNG code.
(x_clear_image): If cairo, destroy the surface in cr_data.
(png_load): Add new cairo compatible implementation.
(lookup_image_type): Add defined (USE_CAIRO) for define png_type.
* src/xfns.c: New section Printing.
(x-export-frames, x-page-setup-dialog, x-get-page-setup)
(x-print-frames-dialog): New printing functions.
(Fx_create_frame, x_create_tip_frame): Register ftcrfont if
cairo.
(syms_of_xfns): Defsym Qorientation, Qtop_margin, Qbottom_margin,
Qportrait, Qlandscape, Qreverse_portrait, Qreverse_landscape).
(syms_of_xfns): Provide cairo and defvar cairo-version-string.
defsubr Sx_page_setup_dialog, Sx_get_page_setup, Sx_print_frames_dialog.
* src/xterm.c (x_clear_area1, x_prepare_for_xlibdraw)
(x_set_clip_rectangles, x_reset_clip_rectangles, x_fill_rectangle)
(x_draw_rectangle, x_fill_trapezoid_for_relief, x_clear_window)
(x_gc_get_ext_data, x_extension_initialize, x_cr_accumulate_data):
Declare.
(FRAME_CR_CONTEXT, FRAME_CR_SURFACE): New macros.
(max_fringe_bmp, fringe_bmp): New variables.
(x_gc_get_ext_data, x_extension_initialize)
(x_cr_destroy_surface, x_begin_cr_clip, x_end_cr_clip)
(x_set_cr_source_with_gc_foreground)
(x_set_cr_source_with_gc_background, x_cr_define_fringe_bitmap)
(x_cr_destroy_fringe_bitmap, x_cr_draw_image, x_cr_draw_frame)
(x_cr_accumulate_data, x_cr_destroy, x_cr_export_frames)
(x_prepare_for_xlibdraw, x_set_clip_rectangles)
(x_reset_clip_rectangles, x_fill_rectangle, x_draw_rectangle)
(x_clear_window, x_fill_trapezoid_for_relief): New functions.
(x_update_begin): Create cairo surface if needed.
(x_draw_vertical_window_border): Call x_fill_rectangle for cairo.
(x_update_end): Paint cairo drawing surface to xlib surface.
(x_clear_under_internal_border, x_after_update_window_line): Adjust
arguments to x_clear_area.
(x_draw_fringe_bitmap): Call x_fill_rectangle. Get GC values and
call x_cr_draw_image for cairo. Call x_reset_clip_rectangles instead
of XSetClipMask.
(x_set_glyph_string_clipping)
(x_set_glyph_string_clipping_exactly): Use x_set_clip_rectangles
instead of XSetClipRectangles.
(x_clear_glyph_string_rect, x_draw_glyph_string_background): Use
x_fill_rectangle instead of XFillRectangle.
(x_draw_glyph_string_foreground)
(x_draw_composite_glyph_string_foreground)
(x_draw_glyphless_glyph_string_foreground): Use x_draw_rectangle instead
of XDrawRectangle.
(x_draw_relief_rect): Add code for USE_CAIRO.
Call x_reset_clip_rectangles instead of XSetClipMask.
(x_draw_box_rect): x_set_clip_rectangles instead of XSetClipRectangles,
x_fill_rectangle instead of XFillRectangle, x_reset_clip_rectangles
instead of XSetClipMask.
(x_draw_image_foreground, x_draw_image_foreground_1):
x_draw_rectangle instead of XDrawRectangle.
(x_draw_glyph_string_bg_rect): x_fill_rectangle instead of
XFillRectangle.
(x_draw_image_glyph_string): If img has cr_data, use it as
a cairo surface.
(x_draw_stretch_glyph_string): x_set_clip_rectangles instead of
XSetClipRectangles, x_fill_rectangle instead of XFillRectangle.
(x_draw_glyph_string): x_fill_rectangle instead of XFillRectangle.,
x_reset_clip_rectangles instead of XSetClipMask.
(x_shift_glyphs_for_insert): Call x_prepare_for_xlibdraw.
(x_clear_area1): New function that calls XClearArea.
(x_clear_area): Takes frame as parameter, calls x_clear_area1 for
non-cairo.
(x_clear_frame): x_clear_window instead of XClearWindow.
(x_scroll_run): Set frame garbaged if cairo.
(XTmouse_position): Initialize *part to 0.
(x_scroll_bar_create): Adjust arguments to x_clear_area.
(x_scroll_bar_set_handle): x_clear_area1 instead of x_clear_area,
x_fill_rectangle instead of XFillRectangle.
(XTset_vertical_scroll_bar, XTset_horizontal_scroll_bar): Adjust
arguments to x_clear_area.
(x_scroll_bar_expose): x_draw_rectangle instead of XDrawRectangle.
(handle_one_xevent): Adjust arguments to x_clear_area.
Destroy cairo surface for frame if ConfigureNotify.
(x_clip_to_row): x_set_clip_rectangles instead of XSetClipRectangles.
(x_draw_hollow_cursor): x_draw_rectangle instead of XDrawRectangle,
x_reset_clip_rectangles instead of XSetClipMask.
(x_draw_bar_cursor): x_fill_rectangle instead of XFillRectangle,
x_reset_clip_rectangles instead of XSetClipMask.
(x_clear_frame_area): Adjust arguments to x_clear_area.
(x_free_frame_resources): Call x_prepare_for_xlibdraw.
(x_term_init): Call x_extension_initialize if cairo.
(x_redisplay_interface): Add x_cr_define_fringe_bitmap,
x_cr_destroy_fringe_bitmap for cairo.
(x_initialize): Call x_cr_init_fringe for cairo.
* src/xterm.h: Add include of cairo header files.
(x_bitmap_record): Add img if cairo.
(x_gc_ext_data): New struct for cairo.
(x_display_info): Add ext_codes for cairo.
(x_output): Add cr_context and cr_surface for cairo.
(x_clear_area): Change arguments from Display*/Window to frame pointer.
(x_query_color, x_begin_cr_clip, x_end_cr_clip)
(x_set_cr_source_with_gc_foreground, x_set_cr_source_with_gc_background)
(x_cr_draw_frame, x_cr_export_frames): Declare.
2015-02-11 15:14:35 +00:00
|
|
|
(if (featurep 'cairo)
|
|
|
|
(format ", cairo version %s" cairo-version-string)
|
|
|
|
"")
|
2000-12-27 14:34:09 +00:00
|
|
|
(if (and (boundp 'x-toolkit-scroll-bars)
|
|
|
|
(memq x-toolkit-scroll-bars '(xaw xaw3d)))
|
|
|
|
(format ", %s scroll bars"
|
|
|
|
(capitalize (symbol-name x-toolkit-scroll-bars)))
|
|
|
|
"")
|
2016-03-02 18:21:45 +00:00
|
|
|
(if emacs-build-time
|
|
|
|
(format-time-string (concat
|
|
|
|
(if (called-interactively-p
|
|
|
|
'interactive)
|
|
|
|
"" "\n")
|
|
|
|
" of %Y-%m-%d")
|
|
|
|
emacs-build-time)
|
|
|
|
""))))
|
2003-02-04 12:29:42 +00:00
|
|
|
(if here
|
1999-10-04 17:15:48 +00:00
|
|
|
(insert version-string)
|
2009-10-02 03:48:36 +00:00
|
|
|
(if (called-interactively-p 'interactive)
|
1999-10-04 17:15:48 +00:00
|
|
|
(message "%s" version-string)
|
|
|
|
version-string))))
|
|
|
|
|
2001-11-16 23:59:51 +00:00
|
|
|
;; We hope that this alias is easier for people to find.
|
1999-10-04 17:15:48 +00:00
|
|
|
(defalias 'version 'emacs-version)
|
|
|
|
|
2018-04-20 22:55:04 +00:00
|
|
|
(define-obsolete-variable-alias 'emacs-bzr-version
|
|
|
|
'emacs-repository-version "24.4")
|
|
|
|
|
2012-04-07 19:51:51 +00:00
|
|
|
;; Set during dumping, this is a defvar so that it can be setq'd.
|
2014-01-08 22:57:47 +00:00
|
|
|
(defvar emacs-repository-version nil
|
2014-01-09 01:32:45 +00:00
|
|
|
"String giving the repository revision from which this Emacs was built.
|
|
|
|
Value is nil if Emacs was not built from a repository checkout,
|
|
|
|
or if we could not determine the revision.")
|
|
|
|
|
2014-01-10 17:13:10 +00:00
|
|
|
(define-obsolete-function-alias 'emacs-bzr-get-version
|
2014-10-31 09:09:24 +00:00
|
|
|
'emacs-repository-get-version "24.4")
|
2014-01-10 17:13:10 +00:00
|
|
|
|
2015-06-14 00:17:47 +00:00
|
|
|
(defun emacs-repository-version-git (dir)
|
|
|
|
"Ask git itself for the version information for directory DIR."
|
|
|
|
(message "Waiting for git...")
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((default-directory (file-name-as-directory dir)))
|
|
|
|
(and (eq 0
|
2015-06-14 23:33:05 +00:00
|
|
|
(with-demoted-errors "Error running git rev-parse: %S"
|
2015-06-14 00:17:47 +00:00
|
|
|
(call-process "git" nil '(t nil) nil "rev-parse" "HEAD")))
|
2015-06-14 23:33:05 +00:00
|
|
|
(progn (goto-char (point-min))
|
Replace manually crafted hex regexes with [:xdigit:]
* admin/charsets/mapconv:
* build-aux/gitlog-to-changelog (parse_amend_file, git_dir_option):
* lisp/progmodes/verilog-mode.el (verilog-delay-re):
(verilog-type-font-keywords, verilog-read-always-signals-recurse):
(verilog-is-number):
* lisp/progmodes/vera-mode.el (vera-font-lock-keywords):
* test/src/emacs-module-tests.el (mod-test-sum-test):
* lisp/xml.el: (xml--entity-replacement-text):
* lisp/version.el (emacs-repository-version-git):
* lisp/textmodes/sgml-mode.el (sgml-quote):
* lisp/textmodes/css-mode.el (css-escapes-re)
(css--colors-regexp):
* lisp/progmodes/prolog.el (prolog-syntax-propertize-function):
* lisp/progmodes/hideif.el (hif-token-regexp, hif-tokenize):
* lisp/progmodes/ebnf-dtd.el: (ebnf-dtd-attlistdecl)
(ebnf-dtd-entitydecl, ebnf-dtd-lex):
* lisp/progmodes/ebnf-ebx.el (ebnf-ebx-hex-character):
* lisp/progmodes/ebnf-abn.el (ebnf-abn-character):
* lisp/progmodes/cperl-mode.el (cperl-highlight-charclass)
(cperl-find-pods-heres):
* lisp/progmodes/cc-mode.el (c-maybe-quoted-number-head)
(c-maybe-quoted-number, c-parse-quotes-before-change)
(c-parse-quotes-after-change, c-quoted-number-head-before-point)
(c-quoted-number-straddling-point):
* lisp/progmodes/ada-mode.el (featurep, ada-in-numeric-literal-p)
(ada-font-lock-keywords):
* lisp/org/org-mobile.el (org-mobile-copy-agenda-files)
* lisp/org/org-table.el (org-table-number-regexp):
(org-mobile-update-checksum-for-capture-file):
* lisp/nxml/xsd-regexp.el (xsdre-gen-categories):
* lisp/nxml/xmltok.el (let*):
* lisp/nxml/rng-xsd.el (rng-xsd-convert-hex-binary)
(rng-xsd-convert-any-uri):
* lisp/nxml/rng-uri.el (rng-uri-file-name-1)
(rng-uri-unescape-multibyte, rng-uri-unescape-unibyte)
(rng-uri-unescape-unibyte-match)
(rng-uri-unescape-unibyte-replace):
* lisp/nxml/rng-cmpct.el (rng-c-process-escapes):
* lisp/nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* lisp/net/shr-color.el (shr-color->hexadecimal):
* lisp/mail/rfc2231.el (rfc2231-decode-encoded-string):
* lisp/international/mule-cmds.el (read-char-by-name):
* lisp/htmlfontify.el (hfy-hex-regex):
* lisp/gnus/nneething.el (nneething-decode-file-name):
* lisp/gnus/mml-sec.el (mml-secure-find-usable-keys):
* lisp/gnus/gnus-art.el (gnus-button-mid-or-mail-heuristic-alist):
* lisp/faces.el (read-color):
* lisp/epg.el (epg--status-ERRSIG, epg--status-VALIDSIG)
(epg--status-SIG_CREATED, epg--decode-percent-escape)
(epg--decode-hexstring, epg--decode-quotedstring)
(epg-dn-from-string):
* lisp/emulation/cua-rect.el (cua-incr-rectangle):
* lisp/dnd.el (dnd-unescape-uri):
* lisp/cedet/semantic/lex.el (semantic-lex-number-expression):
* lisp/cedet/semantic/java.el (semantic-java-number-regexp):
* lisp/calc/calc-lang.el (pascal):
* lisp/calc/calc-ext.el (math-read-number-fancy):
* lisp/calc/calc-aent.el (math-read-token):
Replace various combinations of [0-9a-fA-F] with [[:xdigit:]].
(Bug#36167)
2019-06-13 00:18:43 +00:00
|
|
|
(looking-at "[[:xdigit:]]\\{40\\}"))
|
2015-06-14 23:33:05 +00:00
|
|
|
(match-string 0)))))
|
2015-06-14 00:17:47 +00:00
|
|
|
|
2020-04-30 10:01:13 +00:00
|
|
|
(defun emacs-repository-get-version (&optional dir _external)
|
2014-01-09 01:32:45 +00:00
|
|
|
"Try to return as a string the repository revision of the Emacs sources.
|
|
|
|
The format of the returned string is dependent on the VCS in use.
|
|
|
|
Value is nil if the sources do not seem to be under version
|
|
|
|
control, or if we could not determine the revision. Note that
|
|
|
|
this reports on the current state of the sources, which may not
|
|
|
|
correspond to the running Emacs.
|
|
|
|
|
2015-06-14 00:17:47 +00:00
|
|
|
Optional argument DIR is a directory to use instead of `source-directory'.
|
2016-06-01 20:25:09 +00:00
|
|
|
Optional argument EXTERNAL is ignored."
|
|
|
|
(emacs-repository-version-git (or dir source-directory)))
|
2012-04-07 19:51:51 +00:00
|
|
|
|
2018-11-10 15:03:12 +00:00
|
|
|
(defvar emacs-repository-branch nil
|
|
|
|
"String giving the repository branch from which this Emacs was built.
|
|
|
|
Value is nil if Emacs was not built from a repository checkout,
|
|
|
|
or if we could not determine the branch.")
|
|
|
|
|
|
|
|
(defun emacs-repository-branch-git (dir)
|
|
|
|
"Ask git itself for the branch information for directory DIR."
|
|
|
|
(message "Waiting for git...")
|
|
|
|
(with-temp-buffer
|
|
|
|
(let ((default-directory (file-name-as-directory dir)))
|
|
|
|
(and (zerop
|
|
|
|
(with-demoted-errors "Error running git rev-parse --abbrev-ref: %S"
|
|
|
|
(call-process "git" nil '(t nil) nil
|
|
|
|
"rev-parse" "--abbrev-ref" "HEAD")))
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring (point) (line-end-position))))))
|
|
|
|
|
|
|
|
(defun emacs-repository-get-branch (&optional dir)
|
|
|
|
"Try to return as a string the repository branch of the Emacs sources.
|
|
|
|
The format of the returned string is dependent on the VCS in use.
|
|
|
|
Value is nil if the sources do not seem to be under version
|
|
|
|
control, or if we could not determine the branch. Note that
|
|
|
|
this reports on the current state of the sources, which may not
|
|
|
|
correspond to the running Emacs.
|
|
|
|
|
|
|
|
Optional argument DIR is a directory to use instead of `source-directory'."
|
|
|
|
(emacs-repository-branch-git (or dir source-directory)))
|
|
|
|
|
1999-10-04 17:15:48 +00:00
|
|
|
;;; version.el ends here
|