summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* ~spwhitton/local/pub is a symlink on athenaarchive/athenaSean Whitton2022-11-12
|
* disable more pgp on athena's muttSean Whitton2022-11-12
|
* disable mutt's GPG on athenaSean Whitton2022-11-12
|
* athena's git configSean Whitton2022-11-12
|
* fix irssi startup cmds on athenaSean Whitton2022-11-12
|
* GNU Stow -> hstow, and follow-up tidying & simplificationsSean Whitton2022-11-12
|
* bstraph.sh: stop checking whether there is a host-specific branchSean Whitton2022-11-12
| | | | | | 'bstrap.sh' is usually invoked by my INSINUATE-DOTFILES Consfigurator property or 'insinuate-dotfiles' shell script, and those both do shallow clones, so the host-specific branch isn't usually available.
* archive invoking archived win32setup.batSean Whitton2022-11-12
|
* revert to customising transient-cycles-window-buffers-cycle-... keysSean Whitton2022-11-08
| | | | We can use customisation comments to indicate what the numbers mean.
* move calling log-edit-show-diff into log-edit-hookSean Whitton2022-11-08
|
* drop log-edit-show-files from log-edit-hookSean Whitton2022-11-08
|
* toggle focus_wrapping in C-i o for Sway & update commentSean Whitton2022-11-08
| | | | | | I believe it wasn't possible to toggle like this under i3, hence the global setting, but it does seem to be possible under Sway. Not yet tested with multiple outputs, however.
* set transient-cycles-window-buffers-cycle-... keys with setoptSean Whitton2022-11-07
| | | | Otherwise they get rewritten to integers, which is undesirable.
* add a Sway binding to take screenshotsSean Whitton2022-11-06
|
* move setting skeleton-end-newline out of a subsectionSean Whitton2022-11-06
|
* Revert "fix raise-frame on Sway using advice"Sean Whitton2022-11-06
| | | | This reverts commit 6718f7d4420c821bca1303d56ade37560443a137.
* rework some of my cycling bindings inc. introduce use of windmoveSean Whitton2022-11-06
|
* spw/back-and-forth-noselect: select the window & rename the commandSean Whitton2022-11-06
| | | | I belive this should have been done in 5ae9d445, as part of undoing 9a8a8b2d.
* add spw/on-host-primary-pSean Whitton2022-10-31
|
* irssi -> rcirc initial configurationSean Whitton2022-10-31
|
* spw/paredit-ctl-j: avoid lexically binding some dynamic varsSean Whitton2022-10-31
|
* spw/dired-copy-filename-as-kill: several improvementsSean Whitton2022-10-31
| | | | | | | | - Quote even when just one file. - Don't behave like M-& when invoked from subdirectory header line. - Tweak comments.
* add ping_log scriptSean Whitton2022-10-31
|
* src/emacs skip action: fix some operator precedenceSean Whitton2022-10-29
|
* emacsclient wrapper: pass nicer zeroth arg to installed programsSean Whitton2022-10-29
| | | | In-tree Emacs gets confused if we do something similar for that.
* spw/daemon-lock-self: don't sleep foreverSean Whitton2022-10-29
| | | | If the quit gets stuck and I have to kill -9, the sleep(1) can survive.
* emacsclient wrapper: use correct umask when creating $locks_dirSean Whitton2022-10-29
| | | | In particular, we don't want to create XDG_RUNTIME_DIR other than as 700.
* emacsclient wrapper: ensure Emacs puts sockets under XDG_RUNTIME_DIRSean Whitton2022-10-29
|
* fix C-i M-gSean Whitton2022-10-29
|
* emacsclient wrapper: -sgdbmacs implies --spw/installedSean Whitton2022-10-29
|
* replace emacs.git workstation integration commitSean Whitton2022-10-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also attempt to improve readability & commenting in wrapper script. Archival copy of the workstation integration commit we're replacing: Date: Sat, 25 Dec 2021 18:05:21 -0700 Subject: Workstation integration of personal development builds branch --- admin/flagfile.melete | 0 lib-src/emacsclient.c | 7 +++++-- lisp/emacs-lisp/package.el | 1 + lisp/startup.el | 7 ++++++- 4 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 admin/flagfile.melete diff --git a/admin/flagfile.melete b/admin/flagfile.melete new file mode 100644 index 00000000000..e69de29bb2d diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 425db8cface..62d71559d3c 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -1794,7 +1794,10 @@ start_daemon_and_retry_set_socket (void) } else { - char emacs[] = "emacs"; + const char *devel_build_rel = "/src/emacs/src/emacs"; + char *emacs = xmalloc (strlen (egetenv ("HOME")) + + strlen (devel_build_rel) + 1); + strcpy ( stpcpy (emacs, egetenv ("HOME")), devel_build_rel); char daemon_option[] = "--daemon"; char *d_argv[3]; d_argv[0] = emacs; @@ -1811,7 +1814,7 @@ start_daemon_and_retry_set_socket (void) d_argv[1] = daemon_arg; } # endif - execvp ("emacs", d_argv); + execvp (emacs, d_argv); message (true, "%s: error starting emacs daemon\n", progname); exit (EXIT_FAILURE); } diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index d619142d64c..d464e120193 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -312,6 +312,7 @@ package-directory-list (and (stringp f) (equal (file-name-nondirectory f) "site-lisp") (push (expand-file-name "elpa" f) result))) + (push "/usr/share/emacs-snapshot/site-lisp/elpa" result) (nreverse result)) "List of additional directories containing Emacs Lisp packages. Each directory name should be absolute. diff --git a/lisp/startup.el b/lisp/startup.el index 725984b815b..e10d854c368 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1452,7 +1452,12 @@ command-line ;; be loaded from site-run-file and wants to test if -q was given ;; should check init-file-user instead, since that is already set. ;; See cus-edit.el for an example. - (if site-run-file + (when site-run-file + (let ((file "/etc/emacs/site-start.d/00debian.el")) + ;; When the Emacs build invokes Emacs, such as in the + ;; Makefile rule for ${unidir}/emoji-labels.el, 00debian.el + ;; might not exist. Should be fine to just skip the load. + (when (file-readable-p file) (load file))) ;; Sites should not disable the startup screen. ;; Only individuals should disable the startup screen. (let ((inhibit-startup-screen inhibit-startup-screen))
* emacsclient wrapper: fix case when passed both -V and --spw/no-startSean Whitton2022-10-29
|
* have two confmacs* abbrevs and update & improve commentSean Whitton2022-10-29
|
* try out starting an instance of flock(1) early in kill-emacs-hookSean Whitton2022-10-29
|
* emacsclient wrapper: hide pwdx(1) stderrSean Whitton2022-10-29
|
* spw/gdbmacs-attach: simplify beginning of function slightlySean Whitton2022-10-29
|
* emacsclient wrapper: use gdb-wait-for-pending when detaching gdbmacsSean Whitton2022-10-29
|
* doccheckin: defer to wrapper script w.r.t. whether Emacs is runningSean Whitton2022-10-29
|
* try a bg colour for gdbmacs which doesn't clash with showing diffsSean Whitton2022-10-29
|
* emacsclient wrapper: add locking around starting up daemonsSean Whitton2022-10-29
|
* emacsclient wrapper: fix commentSean Whitton2022-10-29
|
* emacsclient wrapper: initialise remaining variablesSean Whitton2022-10-29
|
* emacsclient wrapper: use XDG_RUNTIME_DIRSean Whitton2022-10-29
|
* have gdbmacs start up Emacs rather than attach to itSean Whitton2022-10-29
| | | | | Additionally, either re-use or kill the GUD interaction buffer rather than calling `gdb-reset' ourselves: killing it is the documented way to reset.
* emacsclient wrapper: start inotifywait(1) earlierSean Whitton2022-10-29
|
* emacsclient wrapper: use cleaner booleansSean Whitton2022-10-29
|
* emacsclient wrapper: better handle lack of ss(8)Sean Whitton2022-10-29
|
* update fastmail.crtSean Whitton2022-10-24
|
* src-unregister: update for advent of lib-src/mr/configSean Whitton2022-10-18
|
* drop .mrconfig.in from .stow-local-ignoreSean Whitton2022-10-18
|