(let ((table (make-char-table nil))) ;; make a new empty table
(set-char-table-parent table char-width-table) ;; make it inherit from the current char-width-table
(set-char-table-range table page-break-lines-char 1) ;; let the width of page-break-lines-char be 1
(setq char-width-table table)) ;; use the new table as char-width-table