summaryrefslogtreecommitdiff
path: root/helm-sys.el
diff options
context:
space:
mode:
Diffstat (limited to 'helm-sys.el')
-rw-r--r--helm-sys.el12
1 files changed, 3 insertions, 9 deletions
diff --git a/helm-sys.el b/helm-sys.el
index 4d31d62a..d4ec6053 100644
--- a/helm-sys.el
+++ b/helm-sys.el
@@ -1,6 +1,6 @@
;;; helm-sys.el --- System related functions for helm. -*- lexical-binding: t -*-
-;; Copyright (C) 2012 ~ 2019 Thierry Volpiatto <thierry.volpiatto@gmail.com>
+;; Copyright (C) 2012 ~ 2020 Thierry Volpiatto <thierry.volpiatto@gmail.com>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -119,7 +119,7 @@ This affects also sorting functions in the same way."
(when (and (helm--alive-p) (null no-update))
;; Fix quitting while process is running
;; by binding `with-local-quit' in init function
- ;; Issue #1521.
+ ;; Bug#1521.
(helm-force-update
(cl-ecase helm-top-poll-preselection
(candidate (replace-regexp-in-string
@@ -340,7 +340,7 @@ Show actions only on line starting by a PID."
(interactive)
(helm-top-set-mode-line "CPU")
;; Force sorting by CPU even if some versions of top are using by
- ;; default CPU sorting (Issue #1908).
+ ;; default CPU sorting (Bug#1908).
(setq helm-top-sort-fn 'helm-top-sort-by-cpu)
(helm-update (helm-top--preselect-fn)))
@@ -453,10 +453,4 @@ Show actions only on line starting by a PID."
(provide 'helm-sys)
-;; Local Variables:
-;; byte-compile-warnings: (not obsolete)
-;; coding: utf-8
-;; indent-tabs-mode: nil
-;; End:
-
;;; helm-sys.el ends here