bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#70041: 30.0.50; mouse-autoselect-window causes unexpected scroll


From: Deric Bytes
Subject: bug#70041: 30.0.50; mouse-autoselect-window causes unexpected scroll
Date: Thu, 28 Mar 2024 14:40:59 +0000

emacs -q -mm -l test.el

I create a profile report for the following code when it did not work as expected

(setq inhibit-startup-message t)
(setq initial-scratch-message nil)

(defun test()
  (let ((shell-cmd "ls -la")
(output-buffer "my-buf")
(default-directory "/scpx:bangmyhead@192.168.0.46:~/")
(process-name "my-proc"))
    (start-file-process-shell-command
     process-name
     (get-buffer-create output-buffer)
     shell-cmd)
    (switch-to-buffer output-buffer)
    (with-current-buffer output-buffer
      (goto-char (point-min))
      (find-file-other-window "~/readme"))))

(require 'profiler)
(profiler-reset)
(profiler-start 'cpu+mem)
(test)





Attachment: cpu-report
Description: Binary data

Attachment: memory-report
Description: Binary data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]