aboutsummaryrefslogtreecommitdiffstats
path: root/admin/gitmerge.el
diff options
context:
space:
mode:
authorPaul Eggert2022-07-05 23:25:44 -0500
committerPaul Eggert2022-07-05 23:27:17 -0500
commit54e0b14a6981a317210493f0fead1e2c5b6508ea (patch)
tree4d6f3c5b45a31ff56f76a6d4c9184024962968af /admin/gitmerge.el
parente482379a65e99cb61aba86876587b499eeeef007 (diff)
downloademacs-54e0b14a6981a317210493f0fead1e2c5b6508ea.tar.gz
emacs-54e0b14a6981a317210493f0fead1e2c5b6508ea.zip
Adjust better to Autoconf quoting style change
* admin/gitmerge.el (gitmerge-emacs-version): * admin/nt/dist-build/build-zips.sh (ACTUAL_VERSION): * admin/quick-install-emacs (VERSION): * lisp/cedet/ede/emacs.el (ede-emacs-version): Adjust to change in configure.ac’s Autoconf quoting style. * etc/srecode/ede-autoconf.srt: * test/lisp/progmodes/autoconf-tests.el: (autoconf-tests-current-defun-function-define) (autoconf-tests-current-defun-function-subst): Use better Autoconf quoting. * make-dist (version): Simplify.
Diffstat (limited to 'admin/gitmerge.el')
-rw-r--r--admin/gitmerge.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/gitmerge.el b/admin/gitmerge.el
index 5da70a40285..a214dcbcb74 100644
--- a/admin/gitmerge.el
+++ b/admin/gitmerge.el
@@ -124,7 +124,7 @@ If nil, the function `gitmerge-default-branch' guesses.")
124 (let ((coding-system-for-read vc-git-log-output-coding-system)) 124 (let ((coding-system-for-read vc-git-log-output-coding-system))
125 (call-process "git" nil t nil "show" (format "%s:configure.ac" branch))) 125 (call-process "git" nil t nil "show" (format "%s:configure.ac" branch)))
126 (goto-char (point-min))) 126 (goto-char (point-min)))
127 (re-search-forward "^AC_INIT([^,]+, \\([0-9]+\\)\\.") 127 (re-search-forward "^AC_INIT([^,]+, \\[?\\([0-9]+\\)\\.")
128 (string-to-number (match-string 1)))) 128 (string-to-number (match-string 1))))
129 129
130(defun gitmerge-default-branch () 130(defun gitmerge-default-branch ()