mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
Merge from savannah/emacs-30
e97be722d3Properly move existing tooltips on Android0cf3d34152; * ChangeLog.4: Reformat down to 28 March 2024.ccaa0be8e7; * ChangeLog.4: Check in ommitted change.b5410cbea2; * ChangeLog.4: Fix log entries down to the 1 May 2024.be7625cae7; Fix typosd447cd9fcc; * ChangeLog.4: Update.5dc2a57375; * admin/authors.el (authors-ignored-files): Ignore gnus...
This commit is contained in:
commit
4fb5ff5426
8 changed files with 5147 additions and 4071 deletions
9125
ChangeLog.4
9125
ChangeLog.4
File diff suppressed because it is too large
Load diff
|
|
@ -656,6 +656,7 @@ Changes to files matching one of the regexps in this list are not listed.")
|
|||
"if-11.cc"
|
||||
"if-11.res"
|
||||
"java/org/gnu/emacs/EmacsWindowAttachmentManager.java"
|
||||
"lisp/gnus/gnus-nocem.el"
|
||||
"lisp/gnus/legacy-gnus-agent.el"
|
||||
"legacy-gnus-agent.el"
|
||||
"admin/coccinelle/xsave.cocci"
|
||||
|
|
|
|||
|
|
@ -1762,3 +1762,30 @@ integers from 1 to @var{n}. @kbd{INV INDX} takes three numbers
|
|||
dee6b36286 If use-package-verbose is t, show loading times when :afte...
|
||||
267fc6d00c4 ruby-smie-rules: Fix misindentation of a method call afte...
|
||||
b0181dafb9e Improve documentation of 'enable-local-variables' in Emac...
|
||||
(string-lessp "abc" "abd")
|
||||
(string-lessp "abd" "abc")
|
||||
@item @code{\ine}
|
||||
(idlwave-define-abbrev "ine" "IF N_Elements() EQ 0 THEN"
|
||||
@kbd{P l} (@code{mh-print-msg}) (the @i{l} is for @i{l}ine printer or
|
||||
* cookie.el (cookie): Enhance it to handle both LINS files and
|
||||
"^(def\\(custom\\|face\\|group\\|ine\\(?:-globalized\\)?-minor-mode\\)" nil t)
|
||||
ine\\(?:-global\\)?-minor-mode\\|ine-compilation-mode\\|un-cvs-mode\\|\
|
||||
(message "Transpose: c(har), l(ine), p(aragraph), s(-exp), w(ord),")
|
||||
(t (message "Ask for: l(ine number), c(ursor position), p(age number)")
|
||||
;; * ITS-style LINS format (strings terminated by ASCII 0 characters,
|
||||
"^\\(?:[Ee]rror on \\|[Ww]arning on\\( \\)\\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
|
||||
(idlwave-define-abbrev "ine" "if n_elements() eq 0 then" (idlwave-keyword-abbrev 11))
|
||||
"copy" "def~ine" "del" "desc~ribe" "disc~onnect" "ed~it"
|
||||
"undef~ine" "var~iable" "whenever")
|
||||
(insert "abc abd"))
|
||||
(should (string= (buffer-string) "abc abd"))
|
||||
(let (node indx comma)
|
||||
indx (match-string 3 url))
|
||||
(when (> (length indx) 0)
|
||||
indx)
|
||||
(setq comma (match-string 2 indx))
|
||||
(setq indx (match-string 1 indx))
|
||||
(Info-index indx)
|
||||
(oarticle (make-symbol "gnus-setup-message-oarticle"))
|
||||
(,oarticle gnus-article-reply)
|
||||
(gnus-inews-add-send-actions ,winconf ,buffer ,oarticle ,config
|
||||
|
|
|
|||
|
|
@ -301,12 +301,12 @@ command-line option, when it prepares the package for download.)
|
|||
@cindex package archive
|
||||
|
||||
@cindex GNU ELPA
|
||||
@cindex non-GNU ELPA
|
||||
@cindex NonGNU ELPA
|
||||
Via the Package Menu, users may download packages from @dfn{package
|
||||
archives}. Such archives are specified by the variable
|
||||
@code{package-archives}, whose default value lists the archives
|
||||
hosted on @url{https://elpa.gnu.org, GNU ELPA} and
|
||||
@url{https://elpa.nongnu.org, non-GNU ELPA}. This section describes
|
||||
@url{https://elpa.nongnu.org, NonGNU ELPA}. This section describes
|
||||
how to set up and maintain a package archive.
|
||||
|
||||
A package archive is simply a directory in which the package files,
|
||||
|
|
|
|||
|
|
@ -2757,7 +2757,7 @@ and @code{special} declarations are redundant in a fully
|
|||
dynamically-scoped Lisp.
|
||||
@end ignore
|
||||
A few declarations are meaningful when byte compiler optimizations
|
||||
are enabled, as they are by the default. Otherwise these
|
||||
are enabled, as they are by default. Otherwise these
|
||||
declarations will effectively be ignored.
|
||||
|
||||
@defun cl-proclaim decl-spec
|
||||
|
|
|
|||
|
|
@ -2941,7 +2941,7 @@ Reload the theme for changes to take effect.
|
|||
:CUSTOM_ID: h:a5140c9c-18b2-45db-8021-38d0b5074116
|
||||
:END:
|
||||
|
||||
By the default, the background of the ~region~ face extends from the
|
||||
By default, the background of the ~region~ face extends from the
|
||||
end of the line to the edge of the window. To limit it to the end of
|
||||
the line, we need to override the face's =:extend= attribute. Adding
|
||||
this to the Emacs configuration file will suffice:
|
||||
|
|
|
|||
|
|
@ -365,8 +365,17 @@ public final class EmacsWindow extends EmacsHandleObject
|
|||
run ()
|
||||
{
|
||||
if (overrideRedirect)
|
||||
{
|
||||
WindowManager.LayoutParams params;
|
||||
|
||||
/* Set the layout parameters again. */
|
||||
view.setLayoutParams (getWindowLayoutParams ());
|
||||
params = getWindowLayoutParams ();
|
||||
view.setLayoutParams (params);
|
||||
|
||||
/* Announce this update to the window server. */
|
||||
if (windowManager != null)
|
||||
windowManager.updateViewLayout (view, params);
|
||||
}
|
||||
|
||||
view.mustReportLayout = true;
|
||||
view.requestLayout ();
|
||||
|
|
|
|||
|
|
@ -525,9 +525,9 @@ See also the command `recentf-open-most-recent-file'."
|
|||
|
||||
(defvar recentf-menu-items-for-commands
|
||||
(list
|
||||
["Cleanup list"
|
||||
["Clean up list"
|
||||
recentf-cleanup
|
||||
:help "Remove duplicates, and obsoletes files from the recent list"
|
||||
:help "Remove duplicates, and obsolete files from the recent list"
|
||||
:active t]
|
||||
["Edit list..."
|
||||
recentf-edit-list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue